repo/extra/firefox/build

77 lines
2.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
2022-06-06 06:12:53 +00:00
for p in *.patch; do
patch -p1 < "$p"
done
2020-09-22 11:21:53 +00:00
sed '/UNZIP/d' toolkit/moz.configure > _
mv -f _ toolkit/moz.configure
2022-07-25 17:24:39 +00:00
# If using libc++, CXXSTDLIB needs to be set manually.
2021-07-18 03:54:36 +00:00
case $("$CC" -print-file-name=libc++.so) in */*)
export CXXSTDLIB=c++
esac
2022-07-25 17:24:39 +00:00
export CFLAGS="$CFLAGS -w"
export CXXFLAGS="$CXXFLAGS -w"
2021-09-03 15:02:25 +00:00
# Instruct the compiler to trim absolute paths in resulting binaries and instead
# change them to relative paths ($PWD/... ./...).
export RUSTFLAGS="$RUSTFLAGS --remap-path-prefix=$PWD=."
export LDFLAGS="$LDFLAGS -Wl,-rpath=/usr/lib/firefox,--enable-new-dtags"
2020-05-06 17:39:07 +00:00
export RUSTFLAGS="$RUSTFLAGS -Cdebuginfo=0"
2022-05-06 22:04:17 +00:00
export MACH_BUILD_PYTHON_NATIVE_PACKAGE_SOURCE=system
export MOZ_DEBUG_FLAGS=-g0
2022-03-06 12:10:08 +00:00
export MOZBUILD_STATE_PATH="$PWD/state"
2020-05-05 23:56:03 +00:00
export MOZ_NOSPAM=1
2021-07-01 12:36:11 +00:00
cat > .mozconfig << EOF
ac_add_options --prefix=/usr
ac_add_options --libdir=/usr/lib
2022-06-06 06:12:53 +00:00
ac_add_options --enable-default-toolkit=cairo-gtk3-wayland-only
2021-07-01 12:36:11 +00:00
ac_add_options --enable-strip
ac_add_options --enable-release
ac_add_options --enable-rust-simd
2022-05-05 07:25:58 +00:00
ac_add_options --enable-audio-backends=alsa
2021-07-01 12:36:11 +00:00
ac_add_options --enable-install-strip
ac_add_options --enable-official-branding
ac_add_options --enable-application=browser
ac_add_options --enable-optimize
2021-07-01 12:36:11 +00:00
ac_add_options --with-system-ffi
ac_add_options --with-system-jpeg
ac_add_options --with-system-libvpx
ac_add_options --with-system-nspr
ac_add_options --with-system-nss
ac_add_options --with-system-pixman
ac_add_options --with-system-png
ac_add_options --with-system-webp
ac_add_options --with-system-zlib
2022-03-06 12:10:08 +00:00
ac_add_options --without-wasm-sandboxed-libraries
2021-07-01 12:36:11 +00:00
ac_add_options --disable-eme
ac_add_options --disable-dbus
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-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-01 12:36:11 +00:00
./mach build
2023-03-02 14:40:00 +00:00
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"