repo/testing/firefox/build
2019-08-03 17:22:17 +03:00

45 lines
997 B
Bash
Executable File

#!/bin/sh -e
# Since this is a testing package, I intentionally disabled SC2164
# for the time being. When we're done, re-enable it.
# Build autoconf 2.13 for Firefox's sole use.
(
# shellcheck disable=SC2164
cd autoconf2.13
./configure --prefix="$PWD/../autoconf" --program-suffix=-2.13
make
make install
)
export PATH="$PWD/autoconf/bin:$PATH"
# Ensure that MOZ_TELEMETRY_REPORTING is unset.
unset MOZ_TELEMETRY_REPORTING
# shellcheck disable=SC2164
cd firefox
mv mozconfig .mozconfig
# Fix OOM errors.
cores=$(nproc)
printf '%s\n' "mk_add_options MOZ_MAKE_FLAGS=\"-j$cores -l$cores\"" >> .mozconfig
for patch in *.patch; do
patch -p1 < "$patch"
done
rm -f old-configure
./mach build
DESTDIR="$1" ./mach install
rm -rf "$1/usr/include"
rm -rf "$1/usr/lib/firefox-devel"
rm -rf "$1/usr/share/idl"
# Install Ghack's user.js.
mkdir -p "$1/usr/lib/firefox/browser/defaults/preferences/"
cp -f ./user.js "$1/usr/lib/firefox/browser/defaults/preferences/vendor.js"