275 lines
8.1 KiB
Bash
275 lines
8.1 KiB
Bash
# Maintainer: Ewout van Mansom <ewout@vanmansom.name>
|
|
# Contributor: Jan Alexander Steffens (heftig) <heftig@archlinux.org>
|
|
# Contributor: Ionut Biru <ibiru@archlinux.org>
|
|
# Contributor: Jakub Schmidtke <sjakub@gmail.com>
|
|
|
|
pkgname=firefox-vaapi
|
|
_pkgname=firefox
|
|
pkgver=113.0.1
|
|
pkgrel=3
|
|
pkgdesc="Standalone web browser from mozilla.org (with VA-API patches)"
|
|
url="https://www.mozilla.org/firefox/"
|
|
arch=(x86_64)
|
|
license=(
|
|
GPL
|
|
LGPL
|
|
MPL
|
|
)
|
|
depends=(
|
|
dbus-glib
|
|
ffmpeg
|
|
gtk3
|
|
libpulse
|
|
libxt
|
|
mime-types
|
|
nss
|
|
ttf-font
|
|
)
|
|
makedepends=(
|
|
cbindgen
|
|
clang
|
|
diffutils
|
|
dump_syms
|
|
imake
|
|
inetutils
|
|
jack
|
|
lld
|
|
llvm
|
|
mesa
|
|
nasm
|
|
nodejs
|
|
python
|
|
rust
|
|
unzip
|
|
wasi-compiler-rt
|
|
wasi-libc
|
|
wasi-libc++
|
|
wasi-libc++abi
|
|
xorg-server-xvfb
|
|
yasm
|
|
zip
|
|
)
|
|
optdepends=(
|
|
'hunspell-en_US: Spell checking, American English'
|
|
'libnotify: Notification integration'
|
|
'networkmanager: Location detection via available WiFi networks'
|
|
'pulseaudio: Audio support'
|
|
'speech-dispatcher: Text-to-Speech'
|
|
'xdg-desktop-portal: Screensharing with Wayland'
|
|
)
|
|
provides=(firefox=${pkgver})
|
|
conflicts=(firefox)
|
|
options=(
|
|
!debug
|
|
!emptydirs
|
|
!lto
|
|
!makeflags
|
|
!strip
|
|
)
|
|
source=(
|
|
https://archive.mozilla.org/pub/firefox/releases/$pkgver/source/firefox-$pkgver.source.tar.xz{,.asc}
|
|
$_pkgname.desktop
|
|
identity-icons-brand.svg
|
|
0001-enable-vaapi.patch
|
|
)
|
|
validpgpkeys=(
|
|
'14F26682D0916CDD81E37B6D61B7B526D98F0353' # Mozilla Software Releases <release@mozilla.com>
|
|
)
|
|
sha256sums=('c4f86ecbb3f418cf8f0000a3824c0decb6ef2253f468cf6e005c5fd1de33da4d'
|
|
'SKIP'
|
|
'298eae9de76ec53182f38d5c549d0379569916eebf62149f9d7f4a7edef36abf'
|
|
'a9b8b4a0a1f4a7b4af77d5fc70c2686d624038909263c795ecc81e0aec7711e9'
|
|
'3110e09266e2830084b7f325a4911acc7812f5f5ddc10bc42a38f1a3ee8e7305')
|
|
b2sums=('d87c98d29f9a29568a818bdbaf12a690ff60e16bb4b8f2a97c83280692533d04b089d015dca5b20fd0a03ca3763ef4a3b438f7105cbe877fda6044cc2c462a08'
|
|
'SKIP'
|
|
'e18f2c22e394ca3b6758bc130245b254947e4d15921be3da443d6d7c3c4b0d22ead1b39fbc10a4f896edd19e2a1dffbd1cbb34dc4beb0621a6ddb70ccc53b3a7'
|
|
'63a8dd9d8910f9efb353bed452d8b4b2a2da435857ccee083fc0c557f8c4c1339ca593b463db320f70387a1b63f1a79e709e9d12c69520993e26d85a3d742e34'
|
|
'29635d36533cbe8b606b75dc448e1870c12e7519494c67b13030fbe3cba3cce01415b30bb6b9f2d945c8f2966310e805ca0be7254896502eb14b424b28374033')
|
|
|
|
# Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
|
|
# Note: These are for Arch Linux use ONLY. For your own distribution, please
|
|
# get your own set of keys. Feel free to contact foutrelis@archlinux.org for
|
|
# more information.
|
|
_google_api_key=AIzaSyDwr302FpOSkGRpLlUpPThNTDPbXcIn_FM
|
|
|
|
# Mozilla API keys (see https://location.services.mozilla.com/api)
|
|
# Note: These are for Arch Linux use ONLY. For your own distribution, please
|
|
# get your own set of keys. Feel free to contact heftig@archlinux.org for
|
|
# more information.
|
|
_mozilla_api_key=e05d56db0a694edc8b5aaebda3f2db6a
|
|
|
|
prepare() {
|
|
mkdir mozbuild
|
|
cd firefox-$pkgver
|
|
|
|
# https://bugzilla.mozilla.org/show_bug.cgi?id=1809068
|
|
# https://bbs.archlinux.org/viewtopic.php?id=281398
|
|
# https://src.fedoraproject.org/rpms/firefox/blob/rawhide/f/firefox-enable-vaapi.patch
|
|
patch -Np1 -i ../0001-enable-vaapi.patch
|
|
|
|
echo -n "$_google_api_key" >google-api-key
|
|
echo -n "$_mozilla_api_key" >mozilla-api-key
|
|
|
|
cat >../mozconfig <<END
|
|
ac_add_options --enable-application=browser
|
|
mk_add_options MOZ_OBJDIR=${PWD@Q}/obj
|
|
|
|
ac_add_options --prefix=/usr
|
|
ac_add_options --enable-release
|
|
ac_add_options --enable-hardening
|
|
ac_add_options --enable-optimize
|
|
ac_add_options --enable-rust-simd
|
|
ac_add_options --enable-linker=lld
|
|
ac_add_options --disable-elf-hack
|
|
ac_add_options --disable-bootstrap
|
|
ac_add_options --with-wasi-sysroot=/usr/share/wasi-sysroot
|
|
|
|
# Branding
|
|
ac_add_options --enable-official-branding
|
|
ac_add_options --enable-update-channel=release
|
|
ac_add_options --with-distribution-id=org.archlinux
|
|
ac_add_options --with-unsigned-addon-scopes=app,system
|
|
ac_add_options --allow-addon-sideload
|
|
export MOZILLA_OFFICIAL=1
|
|
export MOZ_APP_REMOTINGNAME=${_pkgname//-/}
|
|
|
|
# Keys
|
|
ac_add_options --with-google-location-service-api-keyfile=${PWD@Q}/google-api-key
|
|
ac_add_options --with-google-safebrowsing-api-keyfile=${PWD@Q}/google-api-key
|
|
ac_add_options --with-mozilla-api-keyfile=${PWD@Q}/mozilla-api-key
|
|
|
|
# System libraries
|
|
ac_add_options --with-system-nspr
|
|
ac_add_options --with-system-nss
|
|
|
|
# Features
|
|
ac_add_options --enable-alsa
|
|
ac_add_options --enable-jack
|
|
ac_add_options --enable-crashreporter
|
|
ac_add_options --disable-updater
|
|
ac_add_options --disable-tests
|
|
END
|
|
}
|
|
|
|
build() {
|
|
cd firefox-$pkgver
|
|
|
|
export MOZ_NOSPAM=1
|
|
export MOZBUILD_STATE_PATH="$srcdir/mozbuild"
|
|
export MOZ_ENABLE_FULL_SYMBOLS=1
|
|
export MACH_BUILD_PYTHON_NATIVE_PACKAGE_SOURCE=pip
|
|
|
|
# LTO needs more open files
|
|
ulimit -n 4096
|
|
|
|
# Do 3-tier PGO
|
|
echo "Building instrumented browser..."
|
|
cat >.mozconfig ../mozconfig - <<END
|
|
ac_add_options --enable-profile-generate=cross
|
|
END
|
|
./mach build
|
|
|
|
echo "Profiling instrumented browser..."
|
|
./mach package
|
|
LLVM_PROFDATA=llvm-profdata \
|
|
JARLOG_FILE="$PWD/jarlog" \
|
|
xvfb-run -s "-screen 0 1920x1080x24 -nolisten local" \
|
|
./mach python build/pgo/profileserver.py
|
|
|
|
stat -c "Profile data found (%s bytes)" merged.profdata
|
|
test -s merged.profdata
|
|
|
|
stat -c "Jar log found (%s bytes)" jarlog
|
|
test -s jarlog
|
|
|
|
echo "Removing instrumented browser..."
|
|
./mach clobber
|
|
|
|
echo "Building optimized browser..."
|
|
cat >.mozconfig ../mozconfig - <<END
|
|
ac_add_options --enable-lto=cross
|
|
ac_add_options --enable-profile-use=cross
|
|
ac_add_options --with-pgo-profile-path=${PWD@Q}/merged.profdata
|
|
ac_add_options --with-pgo-jarlog=${PWD@Q}/jarlog
|
|
END
|
|
./mach build
|
|
|
|
echo "Building symbol archive..."
|
|
./mach buildsymbols
|
|
}
|
|
|
|
package() {
|
|
cd firefox-$pkgver
|
|
DESTDIR="$pkgdir" ./mach install
|
|
|
|
local vendorjs="$pkgdir/usr/lib/$_pkgname/browser/defaults/preferences/vendor.js"
|
|
install -Dvm644 /dev/stdin "$vendorjs" <<END
|
|
// Use LANG environment variable to choose locale
|
|
pref("intl.locale.requested", "");
|
|
|
|
// Use system-provided dictionaries
|
|
pref("spellchecker.dictionary_path", "/usr/share/hunspell");
|
|
|
|
// Disable default browser checking.
|
|
pref("browser.shell.checkDefaultBrowser", false);
|
|
|
|
// Don't disable extensions in the application directory
|
|
pref("extensions.autoDisableScopes", 11);
|
|
END
|
|
|
|
local distini="$pkgdir/usr/lib/$_pkgname/distribution/distribution.ini"
|
|
install -Dvm644 /dev/stdin "$distini" <<END
|
|
[Global]
|
|
id=archlinux
|
|
version=1.0
|
|
about=Mozilla Firefox for Arch Linux
|
|
|
|
[Preferences]
|
|
app.distributor=archlinux
|
|
app.distributor.channel=$_pkgname
|
|
app.partner.archlinux=archlinux
|
|
END
|
|
|
|
local i theme=official
|
|
for i in 16 22 24 32 48 64 128 256; do
|
|
install -Dvm644 browser/branding/$theme/default$i.png \
|
|
"$pkgdir/usr/share/icons/hicolor/${i}x${i}/apps/$_pkgname.png"
|
|
done
|
|
install -Dvm644 browser/branding/$theme/content/about-logo.png \
|
|
"$pkgdir/usr/share/icons/hicolor/192x192/apps/$_pkgname.png"
|
|
install -Dvm644 browser/branding/$theme/content/about-logo@2x.png \
|
|
"$pkgdir/usr/share/icons/hicolor/384x384/apps/$_pkgname.png"
|
|
install -Dvm644 browser/branding/$theme/content/about-logo.svg \
|
|
"$pkgdir/usr/share/icons/hicolor/scalable/apps/$_pkgname.svg"
|
|
install -Dvm644 ../identity-icons-brand.svg \
|
|
"$pkgdir/usr/share/icons/hicolor/symbolic/apps/$_pkgname-symbolic.svg"
|
|
|
|
install -Dvm644 ../$_pkgname.desktop \
|
|
"$pkgdir/usr/share/applications/$_pkgname.desktop"
|
|
|
|
# Install a wrapper to avoid confusion about binary path
|
|
install -Dvm755 /dev/stdin "$pkgdir/usr/bin/$_pkgname" <<END
|
|
#!/bin/sh
|
|
exec /usr/lib/$_pkgname/firefox "\$@"
|
|
END
|
|
|
|
# Replace duplicate binary with wrapper
|
|
# https://bugzilla.mozilla.org/show_bug.cgi?id=658850
|
|
ln -srfv "$pkgdir/usr/bin/$_pkgname" "$pkgdir/usr/lib/$_pkgname/firefox-bin"
|
|
|
|
# Use system certificates
|
|
local nssckbi="$pkgdir/usr/lib/$_pkgname/libnssckbi.so"
|
|
if [[ -e $nssckbi ]]; then
|
|
ln -srfv "$pkgdir/usr/lib/libnssckbi.so" "$nssckbi"
|
|
fi
|
|
|
|
export SOCORRO_SYMBOL_UPLOAD_TOKEN_FILE="$startdir/.crash-stats-api.token"
|
|
if [[ -f $SOCORRO_SYMBOL_UPLOAD_TOKEN_FILE ]]; then
|
|
make -C obj uploadsymbols
|
|
else
|
|
cp -fvt "$startdir" obj/dist/*crashreporter-symbols-full.tar.zst
|
|
fi
|
|
}
|
|
|
|
# vim:set sw=2 sts=-1 et:
|