# 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 -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 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 wget -q https://gitlab.com/librewolf-community/browser/linux/-/raw/master/remove_addons.patch wget -q https://gitlab.com/librewolf-community/browser/linux/-/raw/master/unity-menubar.patch } 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 cat >../mozconfig <