This commit is contained in:
Bert van der Weerd 2021-02-08 11:54:39 +01:00
parent cf605f8a1b
commit 0507a585dd
2 changed files with 8 additions and 5 deletions

View file

@ -5,9 +5,7 @@ This repository is still a work in progress.
But we have a zip file and an installer available for testing right now.. But we have a zip file and an installer available for testing right now..
Download link to this prerelease is: **Downloads**: To get the installer, the zipped version, and the sha256sum checksums, head over to the [releases](https://gitlab.com/librewolf-community/browser/windows/-/releases) page.
* The installer is: [librewolf-85.0.en-US.win64-setup.exe](https://gitlab.com/librewolf-community/browser/windows/uploads/ec6f7e7dc1096bf7730f503d856d3a9f/librewolf-85.0.en-US.win64-setup.exe).
* Zip file is: [librewolf-85.0.en-US.win64.zip](https://gitlab.com/librewolf-community/browser/windows/uploads/5e9d436515d315d4e8953f88bf02bd99/librewolf-85.0.en-US.win64.zip).
Note: If your version of LibreWolf does _not_ run, an additional install of the [Microsoft Visual C++ 2010 Redistributable Package (x64)](https://www.microsoft.com/en-us/download/details.aspx?id=14632) might be required. Note: If your version of LibreWolf does _not_ run, an additional install of the [Microsoft Visual C++ 2010 Redistributable Package (x64)](https://www.microsoft.com/en-us/download/details.aspx?id=14632) might be required.

View file

@ -9,12 +9,12 @@ pkgver=85.0.1
fetch() { fetch() {
rm -f firefox-$pkgver.source.tar.xz rm -vf firefox-$pkgver.source.tar.xz
wget https://archive.mozilla.org/pub/firefox/releases/$pkgver/source/firefox-$pkgver.source.tar.xz wget https://archive.mozilla.org/pub/firefox/releases/$pkgver/source/firefox-$pkgver.source.tar.xz
# the settings and common submodules should be checked out to allow the build # the settings and common submodules should be checked out to allow the build
rm -f megabar.patch remove_addons.patch unity-menubar.patch rm -vf megabar.patch remove_addons.patch unity-menubar.patch
wget https://gitlab.com/librewolf-community/browser/linux/-/raw/master/megabar.patch wget https://gitlab.com/librewolf-community/browser/linux/-/raw/master/megabar.patch
wget https://gitlab.com/librewolf-community/browser/linux/-/raw/master/remove_addons.patch wget https://gitlab.com/librewolf-community/browser/linux/-/raw/master/remove_addons.patch
wget https://gitlab.com/librewolf-community/browser/linux/-/raw/master/unity-menubar.patch wget https://gitlab.com/librewolf-community/browser/linux/-/raw/master/unity-menubar.patch
@ -23,7 +23,9 @@ fetch() {
prepare() { prepare() {
echo "Deleting previous firefox-${pkgver} ..."
rm -rf firefox-$pkgver rm -rf firefox-$pkgver
echo "Extracting firefox-$pkgver.source.tar.xz ..."
tar xf firefox-$pkgver.source.tar.xz tar xf firefox-$pkgver.source.tar.xz
cd firefox-$pkgver cd firefox-$pkgver
@ -63,6 +65,9 @@ mk_add_options MOZ_CRASHREPORTER=0
mk_add_options MOZ_DATA_REPORTING=0 mk_add_options MOZ_DATA_REPORTING=0
mk_add_options MOZ_SERVICES_HEALTHREPORT=0 mk_add_options MOZ_SERVICES_HEALTHREPORT=0
mk_add_options MOZ_TELEMETRY_REPORTING=0 mk_add_options MOZ_TELEMETRY_REPORTING=0
# first attempt to fix the win32 vcredist issue results in build errors..
#WIN32_REDIST_DIR=$VCINSTALLDIR\redist\x86\Microsoft.VC141.CRT
END END