From 7dad8e59d2d373824b99cadaaaf2aa5d3e1075c9 Mon Sep 17 00:00:00 2001 From: Bert van der Weerd Date: Sat, 20 Nov 2021 06:04:05 +0000 Subject: [PATCH 1/4] Add README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..932c3c1 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +## Building +If you have not done so already, you must create the build environment: +``` +python3 librewolf-$(version)/lw-assets/bootstrap.py +``` From bc30254d8d20e58f681840573fddd16f4ac87eed Mon Sep 17 00:00:00 2001 From: Bert van der Weerd Date: Sat, 20 Nov 2021 06:11:22 +0000 Subject: [PATCH 2/4] Update README.md --- README.md | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 932c3c1..2c9afe4 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,25 @@ ## Building -If you have not done so already, you must create the build environment: +First, let's head over to the [releases page](https://gitlab.com/stanzabird/source/-/releases) and download the latest version. Once downloaded, extract it. +``` +wget -q https:///librewolf-$(version).source.tar.gz +tar xf librewolf-$(version).source.tar.gz +``` +Next step, if you have not done so already, you must create the build environment: ``` python3 librewolf-$(version)/lw-assets/bootstrap.py ``` +It takes about an hour for me to complete, but it needs to be done only once. + +Now we're ready to actually build Librewolf: +``` +cd librewplf-$(version) +./mach build +``` +Then we can run it, +``` +./mach run +``` +or make a package. +``` +./mach package +``` From 12ed94db0be5c0dcd9c1d27931cd9cc7c34ac142 Mon Sep 17 00:00:00 2001 From: Bert van der Weerd Date: Sat, 20 Nov 2021 06:20:03 +0000 Subject: [PATCH 3/4] Update README.md --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2c9afe4..fd5854f 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,9 @@ ## Building -First, let's head over to the [releases page](https://gitlab.com/stanzabird/source/-/releases) and download the latest version. Once downloaded, extract it. +First, let's head over to the [releases page](https://gitlab.com/stanzabird/source/-/releases); note and download the latest version. Once downloaded, extract it. ``` -wget -q https:///librewolf-$(version).source.tar.gz +export version=94.0.1 + +wget -q https://fresh.librewolf.io/librewolf-$(version)/librewolf-$(version).source.tar.gz tar xf librewolf-$(version).source.tar.gz ``` Next step, if you have not done so already, you must create the build environment: From ff36d0a1dd309b23d4afe36d1d9794c5a12f3273 Mon Sep 17 00:00:00 2001 From: Bert van der Weerd Date: Sat, 20 Nov 2021 06:21:54 +0000 Subject: [PATCH 4/4] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index fd5854f..729ab77 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -## Building +## Building LibreWolf from source First, let's head over to the [releases page](https://gitlab.com/stanzabird/source/-/releases); note and download the latest version. Once downloaded, extract it. ``` export version=94.0.1 @@ -12,16 +12,16 @@ python3 librewolf-$(version)/lw-assets/bootstrap.py ``` It takes about an hour for me to complete, but it needs to be done only once. -Now we're ready to actually build Librewolf: +Now we're ready to actually build LibreWolf: ``` cd librewplf-$(version) ./mach build ``` -Then we can run it, +Also takes me an hour. Then, we can run it: ``` ./mach run ``` -or make a package. +Or make a package: ``` ./mach package ```