repo/extra/firefox/build

100 lines
2.5 KiB
Plaintext
Raw Normal View History

2019-08-03 04:45:04 -06:00
#!/bin/sh -e
2019-08-03 00:30:56 -06:00
2020-09-22 05:21:53 -06:00
patch -p1 < no-gtk2.patch
2020-07-28 00:04:10 -06:00
# Remove libc header which conflicts with 7 or so Linux
# kernel headers. See: https://github.com/kisslinux/repo/issues/207
sed -i '/net\/if/d' \
media/mtransport/third_party/nICEr/src/stun/addrs-netlink.c
2020-05-05 17:56:03 -06:00
2019-08-03 02:25:00 -06:00
# Build autoconf 2.13 for Firefox's sole use.
2019-08-04 02:56:17 -06:00
# See: https://bugzilla.mozilla.org/show_bug.cgi?id=104642
2019-08-03 00:30:56 -06:00
(
cd autoconf2.13
2019-10-16 16:06:33 -06:00
./configure \
2020-03-03 14:03:38 -07:00
--prefix="$PWD/../junk" \
2019-10-16 16:06:33 -06:00
--program-suffix=-2.13
2019-08-03 00:30:56 -06:00
make
make install
)
2019-08-03 16:46:14 -06:00
2020-03-03 14:03:38 -07: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-08-03 00:30:56 -06:00
2020-05-05 17:56:03 -06:00
mkdir -p build
cd build
2020-05-06 11:39:07 -06:00
# Bypass 'ccache' as it's totally useless when building
# Firefox and only slows things down.
2020-06-17 01:23:46 -06:00
export CC="${CC:-/usr/bin/cc}"
export CXX="${CXX:-/usr/bin/c++}"
2020-05-06 11:39:07 -06:00
2020-05-05 17:56:03 -06:00
export LDFLAGS="$LDFLAGS -Wl,-rpath=/usr/lib/firefox"
2020-05-06 11:39:07 -06:00
export RUSTFLAGS="$RUSTFLAGS -Cdebuginfo=0"
export MOZ_DEBUG_FLAGS=-g0
2020-05-05 17:56:03 -06:00
export MOZ_NOSPAM=1
2020-05-05 17:56:03 -06:00
../configure \
--prefix=/usr \
--libdir=/usr/lib \
--enable-official-branding \
--enable-optimize="$CFLAGS -w" \
--enable-install-strip \
--enable-strip \
--enable-rust-simd \
--enable-application=browser \
--enable-release \
--enable-alsa \
--without-system-nspr \
--without-system-nss \
--with-system-jpeg \
--with-system-zlib \
--with-system-png \
2020-06-02 02:56:51 -06:00
--without-system-libvpx \
2020-05-05 17:56:03 -06:00
--with-system-pixman \
--with-system-ffi \
--disable-profiling \
--disable-accessibility \
--disable-tests \
--disable-system-extension-dirs \
--disable-parental-controls \
--disable-debug-symbols \
--disable-callgrind \
--disable-vtune \
--disable-elf-hack \
--disable-gold \
--disable-jemalloc \
--disable-pulseaudio \
--disable-crashreporter \
--disable-updater \
--disable-dbus \
--disable-eme \
--disable-necko-wifi
2020-05-05 18:01:57 -06:00
make
2020-05-05 17:56:03 -06:00
make DESTDIR="$1" install
2019-08-03 00:30:56 -06:00
2020-05-05 17:56:03 -06:00
# Remove a lot of uneeded "stuff".
2019-08-03 00:30:56 -06:00
rm -rf "$1/usr/include"
rm -rf "$1/usr/lib/firefox-devel"
rm -rf "$1/usr/share/idl"
2020-05-05 17:56:03 -06:00
rm -rf "$1/usr/lib/firefox/gtk2" # Drop GTK+2 runtime dependency.
2019-10-16 16:06:33 -06: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"
2020-05-05 18:18:23 -06:00
rm -f "$1/usr/lib/firefox/browser/features/doh-rollout@mozilla.org.xpi"