mirror of
https://codeberg.org/librewolf/source.git
synced 2024-12-22 13:43:04 -05:00
Updated README.md.in
This commit is contained in:
parent
390948efe3
commit
5b256d7281
3 changed files with 11 additions and 15 deletions
6
Makefile
6
Makefile
|
@ -66,7 +66,7 @@ librewolf : librewolf-$(version)
|
|||
(cd librewolf-$(version) && ./mach build && ./mach package)
|
||||
|
||||
README.md : README.md.in ./version ./release
|
||||
sed "s/__VERSION__/$(version)/g" < $< > tmp
|
||||
sed "s/__RELEASE__/$(release)/g" < tmp > $@
|
||||
rm -f tmp
|
||||
@sed "s/__VERSION__/$(version)/g" < $< > tmp
|
||||
@sed "s/__RELEASE__/$(release)/g" < tmp > $@
|
||||
@rm -f tmp
|
||||
|
||||
|
|
10
README.md
10
README.md
|
@ -13,17 +13,17 @@ Next, we create ourselves a build folder and extract the tarball.
|
|||
```
|
||||
mkdir build
|
||||
cd build
|
||||
tar xf ../librewolf-$(version)-$(release).source.tar.gz
|
||||
tar xf ../librewolf-95.0.2-1.source.tar.gz
|
||||
```
|
||||
Next step, if you have not done so already, you must create the build environment:
|
||||
```
|
||||
librewolf-$(version)/lw/mozfetch.sh
|
||||
librewolf-95.0.2/lw/mozfetch.sh
|
||||
```
|
||||
It takes about an hour for me to complete, but it needs to be done only once. This step might fail and cause problems. Hack a bit, and if that fails you can ask on our Gitter/matrix channel.
|
||||
It takes about an hour for me to complete, but it needs to be done only once. This step might fail and cause problems. Hack a bit, and if that fails you can ask on our [Gitter](https://gitter.im/librewolf-community/librewolf)/[Matrix](https://matrix.to/#/#librewolf:matrix.org) channels.
|
||||
|
||||
Now we're ready to actually build LibreWolf:
|
||||
```
|
||||
cd librewolf-$(version)
|
||||
cd librewolf-95.0.2
|
||||
./mach build
|
||||
```
|
||||
Also takes me an hour. Then, we can run it:
|
||||
|
@ -69,8 +69,6 @@ make check
|
|||
If there is a new version, it's a good time to git commit and trigger a CI build job.
|
||||
```
|
||||
git commit -am v$(cat version)-$(cat release) && git push
|
||||
# or use this, which does the same as above:
|
||||
make trigger-ci
|
||||
```
|
||||
To build the source archive:
|
||||
```
|
||||
|
|
10
README.md.in
10
README.md.in
|
@ -13,17 +13,17 @@ Next, we create ourselves a build folder and extract the tarball.
|
|||
```
|
||||
mkdir build
|
||||
cd build
|
||||
tar xf ../librewolf-$(version)-$(release).source.tar.gz
|
||||
tar xf ../librewolf-__VERSION__-__RELEASE__.source.tar.gz
|
||||
```
|
||||
Next step, if you have not done so already, you must create the build environment:
|
||||
```
|
||||
librewolf-$(version)/lw/mozfetch.sh
|
||||
librewolf-__VERSION__/lw/mozfetch.sh
|
||||
```
|
||||
It takes about an hour for me to complete, but it needs to be done only once. This step might fail and cause problems. Hack a bit, and if that fails you can ask on our Gitter/matrix channel.
|
||||
It takes about an hour for me to complete, but it needs to be done only once. This step might fail and cause problems. Hack a bit, and if that fails you can ask on our [Gitter](https://gitter.im/librewolf-community/librewolf)/[Matrix](https://matrix.to/#/#librewolf:matrix.org) channels.
|
||||
|
||||
Now we're ready to actually build LibreWolf:
|
||||
```
|
||||
cd librewolf-$(version)
|
||||
cd librewolf-__VERSION__
|
||||
./mach build
|
||||
```
|
||||
Also takes me an hour. Then, we can run it:
|
||||
|
@ -69,8 +69,6 @@ make check
|
|||
If there is a new version, it's a good time to git commit and trigger a CI build job.
|
||||
```
|
||||
git commit -am v$(cat version)-$(cat release) && git push
|
||||
# or use this, which does the same as above:
|
||||
make trigger-ci
|
||||
```
|
||||
To build the source archive:
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue