2021-11-20 01:57:42 -05:00
|
|
|
## Building LibreWolf from source:
|
2021-11-21 07:19:07 -05:00
|
|
|
|
2021-12-22 15:47:33 -05:00
|
|
|
First, let's **[download the latest tarball](https://gitlab.com/librewolf-community/browser/source/-/jobs/artifacts/main/raw/librewolf-95.0.2.source.tar.gz?job=build-job)**.
|
2021-11-21 22:36:24 -05:00
|
|
|
|
|
|
|
To download the latest from a script, use wget/curl like this:
|
2021-11-21 22:34:04 -05:00
|
|
|
```
|
2021-12-19 22:37:10 -05:00
|
|
|
export version=95.0.2 # example
|
2021-12-22 15:47:33 -05:00
|
|
|
wget -O librewolf-$(version).source.tar.gz https://gitlab.com/librewolf-community/browser/source/-/jobs/artifacts/main/raw/librewolf-$(version).source.tar.gz?job=build-job
|
|
|
|
curl -L -o librewolf-$(version).source.tar.gz https://gitlab.com/librewolf-community/browser/source/-/jobs/artifacts/main/raw/librewolf-$(version).source.tar.gz?job=build-job
|
2021-11-21 22:34:04 -05:00
|
|
|
```
|
2021-11-21 02:52:50 -05:00
|
|
|
|
2021-12-22 15:47:33 -05:00
|
|
|
This should be enough for builders to create librewolfies, a more detailed description is in the works with documentation in: CONTRIBUTING.md
|