# build.sh - build librewolf on windows # derived from https://gitlab.com/librewolf-community/browser/linux/-/blob/master/PKGBUILD pkgname=librewolf _pkgname=LibreWolf pkgver=85.0.2 fetch() { # fetch the firefox source. rm -f firefox-$pkgver.source.tar.xz wget https://archive.mozilla.org/pub/firefox/releases/$pkgver/source/firefox-$pkgver.source.tar.xz if [ ! -f firefox-$pkgver.source.tar.xz ]; then exit 1; fi # the settings and common submodules should be checked out with --recursive to allow the build # get the patches echo 'Getting patches..' rm -f megabar.patch remove_addons.patch unity-menubar.patch wget -q https://gitlab.com/librewolf-community/browser/linux/-/raw/master/megabar.patch if [ ! -f megabar.patch ]; then exit 1; fi wget -q https://gitlab.com/librewolf-community/browser/linux/-/raw/master/remove_addons.patch if [ ! -f remove_addons.patch ]; then exit 1; fi wget -q https://gitlab.com/librewolf-community/browser/linux/-/raw/master/unity-menubar.patch if [ ! -f unity-menubar.patch ]; then exit 1; fi } prepare() { echo "Deleting previous firefox-${pkgver} ..." rm -rf firefox-$pkgver echo "Extracting firefox-$pkgver.source.tar.xz ..." tar xf firefox-$pkgver.source.tar.xz if [ ! -d firefox-$pkgver ]; then exit 1; fi cd firefox-$pkgver cat >../mozconfig <