0
Fork 0
mirror of https://codeberg.org/librewolf/source.git synced 2024-12-22 13:43:04 -05:00
This commit is contained in:
Bert van der Weerd 2022-02-03 10:37:03 +01:00
parent 94207dcb38
commit d22449b58d
No known key found for this signature in database
GPG key ID: 4CFABB96ADE0F5B1

View file

@ -30,12 +30,31 @@ git diff > ../mypatch.patch
``` ```
We have Gitter / Matrix rooms, and on the website we have links to the various issue trackers. We have Gitter / Matrix rooms, and on the website we have links to the various issue trackers.
# Building LibreWolf with a tarball instead of git:
First, let's **[download the latest tarball](https://gitlab.com/librewolf-community/browser/source/-/jobs/artifacts/main/raw/librewolf-96.0.3-1.source.tar.gz?job=Build)**. This tarball is the latest produced by the [CI](https://gitlab.com/librewolf-community/browser/source/-/jobs).
```
tar xf <tarball>
cd <folder>
make bootstrap build package
```
That should be it for this readme, the stuff below is for more internal backward compatibility. So you can safely ignore it. That should be it for this readme, the stuff below is for more internal backward compatibility. So you can safely ignore it.
## Building LibreWolf with a tarball instead of git:
First, let's **[download the latest tarball](https://gitlab.com/librewolf-community/browser/source/-/jobs/artifacts/main/raw/librewolf-96.0.3-1.source.tar.gz?job=Build)**. This tarball is the latest produced by the [CI](https://gitlab.com/librewolf-community/browser/source/-/jobs).
# CI and Docker
To download the latest from a script, use wget/curl like this: To download the latest from a script, use wget/curl like this:
``` ```