From 4f7e92261056111f9bc1fae2c71b1bd4508c3887 Mon Sep 17 00:00:00 2001 From: Bert van der Weerd Date: Mon, 8 Feb 2021 11:54:39 +0100 Subject: [PATCH] changes --- README.md | 4 +--- build.sh | 9 +++++++-- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a437b6c..431390a 100644 --- a/README.md +++ b/README.md @@ -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.. -Download link to this prerelease is: -* 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). +**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. 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. diff --git a/build.sh b/build.sh index e715745..0e421d2 100644 --- a/build.sh +++ b/build.sh @@ -9,12 +9,12 @@ pkgver=85.0.1 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 # 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/remove_addons.patch wget https://gitlab.com/librewolf-community/browser/linux/-/raw/master/unity-menubar.patch @@ -23,7 +23,9 @@ fetch() { prepare() { + echo "Deleting previous firefox-${pkgver} ..." rm -rf firefox-$pkgver + echo "Extracting firefox-$pkgver.source.tar.xz ..." tar xf firefox-$pkgver.source.tar.xz cd firefox-$pkgver @@ -63,6 +65,9 @@ mk_add_options MOZ_CRASHREPORTER=0 mk_add_options MOZ_DATA_REPORTING=0 mk_add_options MOZ_SERVICES_HEALTHREPORT=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