blob: 08546d620ae0a3550531c5ebf77e10a61522ca06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
|
# Maintainer: detiam <dehe_tian@outlook.com>
# Contributor: Nikita Tarasov <nikatar@disroot.org>
# Contributor: Jan Alexander Steffens (heftig) <heftig@archlinux.org>
# Contributor: Ionut Biru <ibiru@archlinux.org>
# Contributor: Jakub Schmidtke <sjakub@gmail.com>
_ff_displayname=FirefoxESR
_ff_theme=official
_pkgname=firefox-esr
pkgname=firefox-esr-globalmenu
pkgver=128.4.0
pkgrel=2
_ff_srcname="firefox-$pkgver"
pkgdesc="Fast, Private & Safe Web Browser, Extended Support Release. (with appmenu patch)"
url="https://www.mozilla.org/en-US/firefox/enterprise/"
arch=(x86_64)
license=(MPL-2.0)
provides=("$_pkgname=$pkgver")
conflicts=("$_pkgname")
depends=(
dbus-glib
ffmpeg
gtk3
appmenu-gtk-module
libpulse
libxss
libxt
mime-types
nss
ttf-font)
makedepends=(
cbindgen
clang
diffutils
imake
inetutils
jack
lld
llvm
mesa
nasm
nodejs
python
rustup
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'
'speech-dispatcher: Text-to-Speech'
'xdg-desktop-portal: Screensharing with Wayland')
options=(
!emptydirs
!lto
!makeflags)
source=(
"https://archive.mozilla.org/pub/firefox/releases/${pkgver}esr/source/firefox-${pkgver}esr.source.tar.xz"{,.asc}
"unity-menubar.patch")
validpgpkeys=(
# Mozilla Software Releases <release@mozilla.com>
# https://blog.mozilla.org/security/2023/05/11/updated-gpg-key-for-signing-firefox-releases/
'14F26682D0916CDD81E37B6D61B7B526D98F0353')
# 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
prepare() {
if ! mkdir mozbuild; then
error "Remove '$srcdir' before build!"
exit 1
fi
cd "$_ff_srcname"
for patch in "${source[@]%%::*}"; do
if [[ $patch == *.patch ]]; then
msg2 "Applying $patch"
patch --no-backup-if-mismatch -Np1 -i "$srcdir/$patch"
fi
done
echo -n "$_google_api_key" >google-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-install-strip
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 --with-branding=browser/branding/$_ff_theme
ac_add_options --enable-update-channel=release
ac_add_options --with-distribution-id=org.archlinux
ac_add_options --with-app-name=$_pkgname
export MOZILLA_OFFICIAL=1
export MOZ_APP_REMOTINGNAME=$_pkgname
export MOZ_APP_PROFILE="mozilla/$_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
# 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
# System addons
ac_add_options --with-unsigned-addon-scopes=app,system
ac_add_options --allow-addon-sideload
END
if [[ -n $_SCCACHE ]]; then
echo 'ac_add_options --with-ccache=sccache' >> ../mozconfig
fi
if [[ $_ff_theme == 'official' ]]; then
echo 'ac_add_options --enable-official-branding' >> ../mozconfig
fi
}
build() {
cd "$_ff_srcname"
export RUSTUP_TOOLCHAIN=1.78
export MACH_BUILD_PYTHON_NATIVE_PACKAGE_SOURCE=none
export MOZBUILD_STATE_PATH="$srcdir/mozbuild"
export MOZ_NOSPAM=1
MOZ_BUILD_DATE="$(date -u${SOURCE_DATE_EPOCH:+d @$SOURCE_DATE_EPOCH} +%Y%m%d%H%M%S)"
export MOZ_BUILD_DATE
# malloc_usable_size is used in various parts of the codebase
CFLAGS="${CFLAGS/_FORTIFY_SOURCE=3/_FORTIFY_SOURCE=2}"
CXXFLAGS="${CXXFLAGS/_FORTIFY_SOURCE=3/_FORTIFY_SOURCE=2}"
# Breaks compilation since https://bugzilla.mozilla.org/show_bug.cgi?id=1896066
CFLAGS="${CFLAGS/-fexceptions/}"
CXXFLAGS="${CXXFLAGS/-fexceptions/}"
# LTO needs more open files
ulimit -n 4096
cat >.mozconfig ../mozconfig - <<-END
ac_add_options --enable-lto=cross,thin
END
./mach build --priority normal
}
package() {
local desktopid=org.mozilla.$_pkgname
local vendordir="$pkgdir/usr/lib/$_pkgname/browser/defaults/preferences/"
local distdir="$pkgdir/usr/lib/$_pkgname/distribution/"
local nssckbi="$pkgdir/usr/lib/$_pkgname/libnssckbi.so"
cd "$_ff_srcname"
DESTDIR="$pkgdir" ./mach install
# Distribution
install -Dvm644 /dev/stdin "$vendordir/default-preferences.js" <<-END
// Use LANG environment variable to choose locale
pref("intl.locale.requested", "");
// Don't disable extensions in the application directory
pref("extensions.autoDisableScopes", 0);
pref("extensions.enabledScopes", 15);
END
install -Dvm644 /dev/stdin "$distdir/distribution.ini" <<-END
[Global]
id=archlinux
version=1.0
about=Mozilla Firefox for Arch Linux [Global Menu]
[Preferences]
# Distribution
mozilla.partner.id="archlinux"
app.distributor=archlinux
app.distributor.channel=$pkgname
app.partner.archlinux=archlinux
# Enable GNOME Shell search provider
browser.gnome-search-provider.enabled=true
# Enable backspace button backward
browser.backspace_action=0
# Default use system title bar
browser.tabs.inTitlebar=0
browser.theme.dark-private-windows=false
# Use system-provided dictionaries
spellchecker.dictionary_path="/usr/share/hunspell"
# Restore Compact Mode
browser.compactmode.show=true
END
# Icons
for i in 22 24 256; do
install -Dvm644 browser/branding/$_ff_theme/default$i.png \
"$pkgdir/usr/share/icons/hicolor/${i}x${i}/apps/$desktopid.png"
done
for i in 16 32 48 64 128; do
install -dvm755 "$pkgdir/usr/share/icons/hicolor/${i}x${i}/apps/"
ln -svf "/usr/lib/$_pkgname/browser/chrome/icons/default/default$i.png" \
"$pkgdir/usr/share/icons/hicolor/${i}x${i}/apps/$desktopid.png"
done
install -Dvm644 browser/branding/$_ff_theme/content/about-logo.png \
"$pkgdir/usr/share/icons/hicolor/192x192/apps/$desktopid.png"
install -Dvm644 browser/branding/$_ff_theme/content/about-logo@2x.png \
"$pkgdir/usr/share/icons/hicolor/384x384/apps/$desktopid.png"
install -Dvm644 browser/branding/$_ff_theme/content/about-logo.svg \
"$pkgdir/usr/share/icons/hicolor/scalable/apps/$desktopid.svg"
install -Dvm644 taskcluster/docker/firefox-flatpak/firefox-symbolic.svg \
"$pkgdir/usr/share/icons/hicolor/symbolic/apps/$desktopid-symbolic.svg"
# Use system certificates
if [[ -e $nssckbi ]]; then
ln -srfv "$pkgdir/usr/lib/libnssckbi.so" "$nssckbi"
fi
# Search Providers
install -Dvm644 /dev/stdin \
"$pkgdir/usr/share/dbus-1/services/org.mozilla.${_pkgname//-/_}.SearchProvider.service" < <(\
sed -e "s|org\.mozilla\.firefox|org\.mozilla\.${_pkgname//-/_}|" \
-e "s|/usr/bin/firefox|/usr/bin/$_pkgname|" \
browser/components/shell/search-provider-files/org.mozilla.firefox.SearchProvider.service\
)
install -Dvm644 /dev/stdin \
"$pkgdir/usr/share/gnome-shell/search-providers/$desktopid.search-provider.ini" < <(\
sed -e "s|firefox|${_pkgname//-/_}|g" \
-e "s|${_pkgname//-/_}.desktop|$desktopid.desktop|" \
browser/components/shell/search-provider-files/org.mozilla.firefox.search-provider.ini\
)
# Metainfo
install -Dvm644 /dev/stdin "$pkgdir/usr/share/metainfo/$desktopid.metainfo.xml" < <(\
VERSION=$pkgver DATE=$(date +%Y-%m-%d) envsubst < <(\
sed -e "s|org.mozilla.firefox|$desktopid|g" \
-e "s|<name>Firefox</name>|<name>$_ff_displayname</name>|" \
taskcluster/docker/firefox-flatpak/org.mozilla.firefox.appdata.xml.in)\
)
# Install a launcher for set necessary environment variable
install -Dvm755 /dev/stdin "$pkgdir/usr/bin/$_pkgname" <<-END
#!/usr/bin/env sh
export MOZ_APP_LAUNCHER="\$0" # Used for determine whether firefox is default browser
export MOZ_DESKTOP_FILE_NAME=$desktopid # https://bugzilla.mozilla.org/show_bug.cgi?id=1438051
exec /usr/lib/$_pkgname/$_pkgname --name $desktopid "\$@"
END
# Desktop
install -Dvm755 /dev/stdin "$pkgdir/usr/share/applications/$desktopid.desktop" < <(\
sed -e "/^Name.*=/s|Firefox|$_ff_displayname|g" \
-e "s|Exec=firefox|Exec=/usr/bin/$_pkgname|g" \
-e "s|Icon=org\.mozilla\.firefox|Icon=$desktopid|g" \
-e "s|StartupWMClass=firefox|StartupWMClass=$_pkgname|" \
taskcluster/docker/firefox-flatpak/org.mozilla.firefox.desktop\
)
# Replace duplicate binary with link
# https://bugzilla.mozilla.org/show_bug.cgi?id=658850
ln -srfv "$pkgdir/usr/lib/$_pkgname/$_pkgname" "$pkgdir/usr/lib/$_pkgname/$_pkgname-bin"
}
sha1sums=('63976b5ea27d03ca8b6230435fb62fb74265cafc'
'SKIP'
'68ab2ba970bed5a147043d0bd2ac21b68f766fb1')
# vim:set sw=2 sts=-1 et:
|