mirror of
https://codeberg.org/librewolf/source.git
synced 2024-12-22 05:33:03 -05:00
use new url to clone the prefs-pane
This commit is contained in:
parent
c2ed764caf
commit
322f78afc8
2 changed files with 5 additions and 5 deletions
|
@ -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
|
||||
|
|
|
@ -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('..')
|
||||
|
|
Loading…
Reference in a new issue