0
Fork 0
mirror of https://codeberg.org/librewolf/source.git synced 2024-12-22 13:43:04 -05:00

use new url to clone the prefs-pane

This commit is contained in:
Bert van der Weerd 2022-01-08 19:35:56 +01:00
parent c2ed764caf
commit 322f78afc8
No known key found for this signature in database
GPG key ID: 4CFABB96ADE0F5B1
2 changed files with 5 additions and 5 deletions

View file

@ -1,11 +1,11 @@
## Building LibreWolf from source:
First, let's **[download the latest tarball](https://gitlab.com/librewolf-community/browser/source/-/jobs/artifacts/main/raw/librewolf-95.0.2-3.source.tar.gz?job=build-job)**. This tarball is the latest produced by the CI.
First, let's **[download the latest tarball](https://gitlab.com/librewolf-community/browser/source/-/jobs/artifacts/main/raw/librewolf-95.0.2-4.source.tar.gz?job=build-job)**. This tarball is the latest produced by the CI.
To download the latest from a script, use wget/curl like this:
```
wget -O librewolf-95.0.2-3.source.tar.gz https://gitlab.com/librewolf-community/browser/source/-/jobs/artifacts/main/raw/librewolf-95.0.2-3.source.tar.gz?job=build-job
curl -L -o librewolf-95.0.2-3.source.tar.gz https://gitlab.com/librewolf-community/browser/source/-/jobs/artifacts/main/raw/librewolf-95.0.2-3.source.tar.gz?job=build-job
wget -O librewolf-95.0.2-4.source.tar.gz https://gitlab.com/librewolf-community/browser/source/-/jobs/artifacts/main/raw/librewolf-95.0.2-4.source.tar.gz?job=build-job
curl -L -o librewolf-95.0.2-4.source.tar.gz https://gitlab.com/librewolf-community/browser/source/-/jobs/artifacts/main/raw/librewolf-95.0.2-4.source.tar.gz?job=build-job
```
Next, we create ourselves a build folder and extract the tarball.
@ -13,7 +13,7 @@ Next, we create ourselves a build folder and extract the tarball.
```
mkdir build
cd build
tar xf ../librewolf-95.0.2-3.source.tar.gz
tar xf ../librewolf-95.0.2-4.source.tar.gz
```
### build environment

View file

@ -119,7 +119,7 @@ def librewolf_patches():
# insert the settings pane source (experimental)
exec('rm -rf librewolf-pref-pane')
exec('git clone https://gitlab.com/ohfp/librewolf-pref-pane.git')
exec('git clone https://gitlab.com/librewolf-community/browser/librewolf-pref-pane.git')
os.chdir('librewolf-pref-pane')
exec('git diff 1fee314adc81000294fc0cf3196a758e4b64dace > ../lw/librewolf-pref-pane.patch')
os.chdir('..')