# build.sh - build librewolf on windows # derived from https://gitlab.com/librewolf-community/browser/linux/-/blob/master/PKGBUILD pkgname=librewolf _pkgname=LibreWolf pkgver=86.0 fetch() { echo "fetch: begin." # 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 [ $? -ne 0 ]; then exit 1; fi 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 wget -q https://gitlab.com/librewolf-community/browser/linux/-/raw/master/megabar.patch if [ $? -ne 0 ]; then exit 1; fi if [ ! -f megabar.patch ]; then exit 1; fi wget -q https://gitlab.com/librewolf-community/browser/linux/-/raw/master/remove_addons.patch if [ $? -ne 0 ]; then exit 1; fi if [ ! -f remove_addons.patch ]; then exit 1; fi echo "fetch: done." } prepare() { echo "prepare: begin." echo "Deleting previous firefox-${pkgver} ..." rm -rf firefox-$pkgver echo "Extracting firefox-$pkgver.source.tar.xz ..." tar xf firefox-$pkgver.source.tar.xz if [ $? -ne 0 ]; then exit 1; fi if [ ! -d firefox-$pkgver ]; then exit 1; fi echo "prepare: done." } do_patches() { echo "do_patches: begin." if [ ! -d firefox-$pkgver ]; then exit 1; fi cd firefox-$pkgver cat >../mozconfig <