repo/extra/firefox/build

114 lines
3.3 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
2021-07-08 15:32:23 +00:00
patch -p1 < no-x11.patch
2020-09-22 11:21:53 +00:00
2021-07-07 16:08:54 +00:00
# Remove fribidi dependency.
sed '/fribidi/d' config/system-headers.mozbuild > _
mv -f _ config/system-headers.mozbuild
2020-07-28 06:04:10 +00:00
# Remove libc header which conflicts with 7 or so Linux
# kernel headers. See: https://github.com/kisslinux/repo/issues/207
2021-07-03 20:38:36 +00:00
_f=dom/media/webrtc/transport/third_party/nICEr/src/stun/addrs-netlink.c
sed '/net\/if/d' "$_f" > _
mv -f _ "$_f"
2020-05-05 23:56:03 +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-08-03 06:30:56 +00:00
2021-07-01 12:51:27 +00:00
# Bypass 'ccache' as it's totally useless when building
# Firefox and only slows things down.
export CC="${CC:-/usr/bin/cc}"
export CXX="${CXX:-/usr/bin/c++}"
2020-05-06 17:39:07 +00:00
2021-07-01 15:59:54 +00:00
export LDFLAGS="$LDFLAGS -Wl,-rpath=/usr/lib/firefox,--enable-new-dtags"
2020-05-06 17:39:07 +00:00
export RUSTFLAGS="$RUSTFLAGS -Cdebuginfo=0"
2021-07-01 12:36:11 +00:00
export MACH_USE_SYSTEM_PYTHON=1
export MOZ_DEBUG_FLAGS=-g0
2020-05-05 23:56:03 +00:00
export MOZ_NOSPAM=1
2021-07-01 12:36:11 +00:00
cat > .mozconfig << EOF
2021-07-08 09:26:58 +00:00
ac_add_options --enable-default-toolkit=cairo-gtk3-wayland
2021-07-01 12:36:11 +00:00
ac_add_options --prefix=/usr
ac_add_options --libdir=/usr/lib
ac_add_options --enable-alsa
ac_add_options --enable-strip
ac_add_options --enable-release
ac_add_options --enable-rust-simd
ac_add_options --enable-install-strip
ac_add_options --enable-official-branding
ac_add_options --enable-application=browser
ac_add_options --enable-optimize="${CFLAGS:-} -w"
2021-07-01 13:03:27 +00:00
ac_add_options --with-system-libvpx
2021-07-01 12:36:11 +00:00
ac_add_options --with-system-ffi
ac_add_options --with-system-png
ac_add_options --with-system-jpeg
ac_add_options --with-system-zlib
ac_add_options --with-system-pixman
ac_add_options --without-system-nss
ac_add_options --without-system-nspr
ac_add_options --disable-eme
ac_add_options --disable-dbus
ac_add_options --disable-gold
ac_add_options --disable-tests
ac_add_options --disable-vtune
ac_add_options --disable-updater
ac_add_options --disable-jemalloc
ac_add_options --disable-elf-hack
ac_add_options --disable-callgrind
ac_add_options --disable-profiling
ac_add_options --disable-necko-wifi
ac_add_options --disable-crashreporter
ac_add_options --disable-pulseaudio
ac_add_options --disable-accessibility
ac_add_options --disable-debug
ac_add_options --disable-debug-symbols
ac_add_options --disable-parental-controls
ac_add_options --disable-system-extension-dirs
EOF
2021-07-10 13:12:26 +00:00
# Currently required for X11-less builds.
# See: https://bugzilla.mozilla.org/show_bug.cgi?id=1661450
2021-07-10 13:12:26 +00:00
# https://bugzilla.mozilla.org/show_bug.cgi?id=1654112
cat >> .mozconfig <<EOF
ac_add_options --disable-webrtc
EOF
2021-07-01 12:36:11 +00:00
./mach build
DESTDIR="$1" ./mach install
2019-08-03 06:30:56 +00:00
2020-05-05 23:56:03 +00:00
# Remove a lot of uneeded "stuff".
2021-07-01 18:04:21 +00:00
rm -rf \
"$1/usr/include" \
"$1/usr/lib/firefox-devel" \
"$1/usr/share/idl" \
"$1/usr/lib/firefox/browser/features/fxmonitor@mozilla.org.xpi" \
"$1/usr/lib/firefox/browser/features/screenshots@mozilla.org.xpi" \
"$1/usr/lib/firefox/browser/features/webcompat-reporter@mozilla.org.xpi" \
"$1/usr/lib/firefox/browser/features/webcompat@mozilla.org.xpi" \
"$1/usr/lib/firefox/browser/features/doh-rollout@mozilla.org.xpi"