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:
parent
581d2f132e
commit
d95e147b6f
1 changed files with 7 additions and 2 deletions
|
@ -1,8 +1,13 @@
|
|||
## 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)
|
||||
mkdir build
|
||||
|
|
Loading…
Reference in a new issue