0
Fork 0
mirror of https://codeberg.org/librewolf/source.git synced 2025-01-03 03:10:07 -05:00

added wget/curl examples

This commit is contained in:
Bert van der Weerd 2021-11-22 04:34:04 +01:00
parent 581d2f132e
commit d95e147b6f
No known key found for this signature in database
GPG key ID: 4CFABB96ADE0F5B1

View file

@ -1,8 +1,13 @@
## Building LibreWolf from source: ## Building LibreWolf from source:
First, let's [download the latest tarball](https://gitlab.com/stanzabird/source/-/jobs/artifacts/main/raw/librewolf-94.0.2.source.tar.gz?job=build-job). First, let's **[download the latest tarball](https://gitlab.com/stanzabird/source/-/jobs/artifacts/main/raw/librewolf-94.0.2.source.tar.gz?job=build-job)**.
```
wget -O librewolf-$(version).source.tar.gz https://gitlab.com/stanzabird/source/-/jobs/artifacts/main/raw/librewolf-$(version).source.tar.gz?job=build-job
Next, we set a _version_ variable and creat ourselves a build folder. curl -L -o librewolf-94.0.2.source.tar.gz https://gitlab.com/stanzabird/source/-/jobs/artifacts/main/raw/librewolf-94.0.2.source.tar.gz?job=build-job
```
Next, we set a _version_ variable and create ourselves a build folder.
``` ```
export version=$(cat version) export version=$(cat version)
mkdir build mkdir build