repo/extra/firefox/build

58 lines
1.4 KiB
Plaintext
Raw Normal View History

2019-08-03 10:45:04 +00:00
#!/bin/sh -e
2019-08-03 06:30:56 +00:00
2019-08-03 08:25:00 +00:00
# Build autoconf 2.13 for Firefox's sole use.
2019-08-04 08:56:17 +00:00
# See: https://bugzilla.mozilla.org/show_bug.cgi?id=104642
2019-08-03 06:30:56 +00:00
(
cd autoconf2.13
2019-10-16 22:06:33 +00:00
./configure \
2020-03-03 21:03:38 +00:00
--prefix="$PWD/../junk" \
2019-10-16 22:06:33 +00:00
--program-suffix=-2.13
2019-08-03 06:30:56 +00:00
make
make install
)
2019-08-03 22:46:14 +00:00
2020-03-03 21:03:38 +00:00
# Build yasm for Firefox's sole use.
# Firefox is the only package which needs it
# and upstream is kinda dead.
(
cd yasm
./configure \
--prefix="$PWD/../junk"
make
make install
)
export PATH=$PWD/junk/bin:$PATH
2019-10-16 22:06:33 +00:00
export LDFLAGS="$LDFLAGS -Wl,-rpath=/usr/lib/firefox"
2019-11-26 10:56:11 +00:00
export CC=${CC:-gcc}
export CXX=${CXX:-g++}
2019-08-03 06:30:56 +00:00
# Keep memory usage as low as possible.
export LDFLAGS="$LDFLAGS -Wl,--as-needed -Wl,--no-keep-memory -Wl,--stats"
2020-03-10 19:46:01 +00:00
export MOZ_LINK_FLAGS="$LDFLAGS"
export MOZ_DEBUG_FLAGS=-g0
export RUSTFLAGS=-Cdebuginfo=0
2019-08-03 06:30:56 +00:00
for patch in *.patch; do
patch -p1 < "$patch"
done
printf 'mk_add_options MOZ_MAKE_FLAGS="%s"\n' \
"${MAKEFLAGS:--j1 -l1}" >> mozconfig
2019-10-16 22:06:33 +00:00
2020-01-15 12:50:07 +00:00
MOZ_NOSPAM=1 ./mach build
2019-08-03 06:30:56 +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-16 22:06:33 +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"