2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-08-25 07:16:18 +00:00
repo/testing/firefox/build

45 lines
1.2 KiB
Plaintext
Raw Normal View History

2019-10-05 19:01:37 +00:00
#!/bin/sh -e
# Build autoconf 2.13 for Firefox's sole use.
# See: https://bugzilla.mozilla.org/show_bug.cgi?id=104642
(
cd autoconf2.13
2019-10-06 00:04:01 +00:00
./configure \
--prefix="$PWD/../autoconf" \
--program-suffix=-2.13
2019-10-05 19:01:37 +00:00
make
make install
)
2019-10-06 07:34:51 +00:00
export PATH=$PWD/autoconf/bin:$PATH
2019-10-05 19:01:37 +00:00
unset MOZ_TELEMETRY_REPORTING
2019-10-05 22:39:50 +00:00
export LDFLAGS="$LDFLAGS -Wl,-rpath=/usr/lib/firefox"
2019-10-05 19:01:37 +00:00
export MOZ_NOSPAM=1
cd firefox
for patch in *.patch; do
patch -p1 < "$patch"
done
2019-10-06 09:52:43 +00:00
# Fix OOM errors.
cores=$(nproc)
printf '%s\n' "mk_add_options MOZ_MAKE_FLAGS=\"-j$cores -l$cores\"" >> mozconfig
2019-10-06 07:34:51 +00:00
./mach build
2019-10-05 19:01:37 +00:00
DESTDIR="$1" ./mach install
rm -rf "$1/usr/include"
rm -rf "$1/usr/lib/firefox-devel"
rm -rf "$1/usr/share/idl"
rm -rf "$1/usr/lib/firefox/gtk2"
2019-10-06 00:04:01 +00:00
rm -f "$1/usr/lib/firefox/browser/features/fxmonitor@mozilla.org.xpi"
rm -f "$1/usr/lib/firefox/browser/features/screenshots@mozilla.org.xpi"
rm -f "$1/usr/lib/firefox/browser/features/webcompat-reporter@mozilla.org.xpi"
rm -f "$1/usr/lib/firefox/browser/features/webcompat@mozilla.org.xpi"
2019-10-05 19:01:37 +00:00
2019-10-05 22:39:50 +00:00
install -D vendor.js "$1/usr/lib/firefox/browser/defaults/preferences/vendor.js"
2019-10-06 07:34:51 +00:00
install -D policies.json "$1/usr/lib/firefox/distribution/policies.json"