mirror of
https://codeberg.org/librewolf/source.git
synced 2025-01-03 11:20:11 -05:00
readme.md
This commit is contained in:
parent
da6f0b645a
commit
aeae0bcf2c
2 changed files with 41 additions and 41 deletions
42
README.md
42
README.md
|
@ -1,4 +1,24 @@
|
||||||
## LibreWolf build instructions
|
## The LibreWolf build instructions
|
||||||
|
|
||||||
|
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 run
|
||||||
|
```
|
||||||
|
#### How to make a patch
|
||||||
|
|
||||||
|
The easiest way to make patches is to go to the LibreWolf source folder:
|
||||||
|
```
|
||||||
|
cd librewolf-$(cat version)
|
||||||
|
git init
|
||||||
|
git add <path_to_file_you_changed>
|
||||||
|
git commit -am initial-commit
|
||||||
|
git diff > ../mypatch.patch
|
||||||
|
```
|
||||||
|
We have Gitter / Matrix rooms, and on the website we have links to the various issue trackers.
|
||||||
|
|
||||||
|
#### Building LibreWolf with git:
|
||||||
|
|
||||||
1. Clone the git repository via https:
|
1. Clone the git repository via https:
|
||||||
```
|
```
|
||||||
|
@ -20,23 +40,3 @@ After that, you can either build a tarball from it, or run it:
|
||||||
make package
|
make package
|
||||||
make run
|
make run
|
||||||
```
|
```
|
||||||
#### How to make a patch
|
|
||||||
|
|
||||||
The easiest way to make patches is to go to the LibreWolf source folder:
|
|
||||||
```
|
|
||||||
cd librewolf-$(cat version)
|
|
||||||
git init
|
|
||||||
git add <path_to_file_you_changed>
|
|
||||||
git commit -am initial-commit
|
|
||||||
git diff > ../mypatch.patch
|
|
||||||
```
|
|
||||||
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 run
|
|
||||||
```
|
|
||||||
|
|
40
README.md.in
40
README.md.in
|
@ -1,5 +1,25 @@
|
||||||
## The LibreWolf build instructions
|
## The LibreWolf build instructions
|
||||||
|
|
||||||
|
First, let's **[download the latest tarball](https://gitlab.com/librewolf-community/browser/source/-/jobs/artifacts/main/raw/librewolf-__VERSION__-__RELEASE__.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 run
|
||||||
|
```
|
||||||
|
#### How to make a patch
|
||||||
|
|
||||||
|
The easiest way to make patches is to go to the LibreWolf source folder:
|
||||||
|
```
|
||||||
|
cd librewolf-$(cat version)
|
||||||
|
git init
|
||||||
|
git add <path_to_file_you_changed>
|
||||||
|
git commit -am initial-commit
|
||||||
|
git diff > ../mypatch.patch
|
||||||
|
```
|
||||||
|
We have Gitter / Matrix rooms, and on the website we have links to the various issue trackers.
|
||||||
|
|
||||||
|
#### Building LibreWolf with git:
|
||||||
|
|
||||||
1. Clone the git repository via https:
|
1. Clone the git repository via https:
|
||||||
```
|
```
|
||||||
git clone --recursive https://gitlab.com/librewolf-community/browser/source.git
|
git clone --recursive https://gitlab.com/librewolf-community/browser/source.git
|
||||||
|
@ -20,23 +40,3 @@ After that, you can either build a tarball from it, or run it:
|
||||||
make package
|
make package
|
||||||
make run
|
make run
|
||||||
```
|
```
|
||||||
#### How to make a patch
|
|
||||||
|
|
||||||
The easiest way to make patches is to go to the LibreWolf source folder:
|
|
||||||
```
|
|
||||||
cd librewolf-$(cat version)
|
|
||||||
git init
|
|
||||||
git add <path_to_file_you_changed>
|
|
||||||
git commit -am initial-commit
|
|
||||||
git diff > ../mypatch.patch
|
|
||||||
```
|
|
||||||
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-__VERSION__-__RELEASE__.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 run
|
|
||||||
```
|
|
||||||
|
|
Loading…
Reference in a new issue