blob: 284a82d9e32a4611b29851447368e374dbe735c9 (
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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
|
# Maintainer: ohfp/lsf <lsf at pfho dot net>
# run pgo build or not; with X(vfb) or wayland
: ${_build_profiled:=true}
: ${_build_profiled_xvfb:=false}
epoch=1
pkgname=konform-browser
provides=(konform-browser)
conflicts=()
__pkgname=konform
_ffsrcver=136.0.4
_lwrelver=100
pkgver="${_ffsrcver}.${_lwrelver}"
pkgrel=1
pkgdesc="Librewolf fork with increased customizability"
url="https://codeberg.org/konform-browser/source"
arch=(x86_64 aarch64)
license=(MPL-2.0)
depends=(
dbus
alsa-lib
at-spi2-core
bash
cairo
ffmpeg
fontconfig
freetype2
gcc-libs
gdk-pixbuf2
glib2
glibc
gtk3
hicolor-icon-theme
libpulse
libevent
libvpx
libx11
libxcb
libxcomposite
libxdamage
libxext
libxfixes
libxrandr
libxss
libxt
libwebp
mime-types
nspr
nss
pango
ttf-font
zlib
)
makedepends=(
binutils
cbindgen
clang
diffutils
git
imake
inetutils
jack
jq
lld
llvm
mesa
nasm
nodejs
pciutils
python
python-setuptools
rust
sccache
unzip
'wasi-compiler-rt'
'wasi-libc++'
'wasi-libc++abi'
'wasi-libc'
yasm
zip
# for generating sources
gnupg
tree
wget
) # pciutils: only to avoid some PGO warning
optdepends=(
'hunspell-dictionary: Spell checking'
'libnotify: Notification integration'
'networkmanager: Location detection via available WiFi networks'
'speech-dispatcher: Text-to-Speech'
'xdg-desktop-portal: Screensharing with Wayland'
'firefox-ublock-origin: Content filter extension'
'firefox-decentraleyes: Local emulation of Content Delivery Networks'
'konform-multi-account-containers-lite: First-class multi-account-containers integration'
)
if [[ "${_build_profiled}" == "true" ]]; then
if [[ "${_build_profiled_xvfb}" == "true" ]]; then
makedepends+=(
xorg-server-xvfb
)
else
makedepends+=(
weston
xorg-xwayland
wlheadless-run # aur/xwayland-run-git
)
fi
fi
backup=('usr/lib/konform/librewolf.cfg'
'usr/lib/konform/distribution/policies.json')
options=(
!debug
!emptydirs
!lto
!makeflags
)
install='konform.install'
_tag="${_ffsrcver}.${_lwrelver}"
source=(
"src"::"git+https://codeberg.org/konform-browser/source.git#tag=${_tag}"
"${__pkgname}.desktop"
"default192x192.png"
)
sha256sums=(
"SKIP"
"SKIP"
"SKIP"
)
# TODO: Signed tagged releases
validpgpkeys=()
prepare() {
_lw_srcdir=$srcdir/src/librewolf-$_ffsrcver-$_lwrelver
## NOTE: upstream librewolf AUR PKGBUILD fetches prebaked librewolf source archive,
## while we bake our own. therefore `make dir` step and another nesting of
## source-dirs are added vs upstream
## <srcprep>
cp -p *.desktop *.png src/
cd src
mkdir -p mozbuild
echo "${_lwrelver}" > release
git submodule update --init --recursive
make lw_source_dir=$_lw_srcdir dir
## </srcprep>
cd $_lw_srcdir
mv mozconfig ../mozconfig || true
cat >>../mozconfig <<END
##### main archlinux-firefox 136
ac_add_options --enable-hardening
ac_add_options --disable-install-strip
ac_add_options --allow-addon-sideload
##### Kon
mk_add_options MOZ_REQUIRE_SIGNING=
#ac_add_options --enable-rust-simd
ac_add_options --disable-tests
ac_add_options --disable-crashreporter
ac_add_options --disable-updater
ac_add_options --enable-system-pixman
ac_add_options --with-ccache=sccache
# fix missing <string.h> in optimized mach build (missing llvm library?) and speed up build in any case
ac_add_options --without-wasm-sandboxed-libraries
##### /Kon
ac_add_options --enable-linker=lld
ac_add_options --prefix=/usr
ac_add_options --disable-bootstrap
export CC='clang'
export CXX='clang++'
# Branding
ac_add_options --with-app-name=${__pkgname}
ac_add_options --enable-update-channel=release
export MOZ_APP_REMOTINGNAME=${__pkgname}
# System libraries
ac_add_options --with-system-nspr
ac_add_options --with-system-nss
## Kon moar system libs
ac_add_options --with-system-zlib
ac_add_options --with-system-webp
ac_add_options --with-system-libevent
ac_add_options --with-system-libvpx
# Features
# keep alsa option in here until merged upstream
ac_add_options --enable-alsa
ac_add_options --enable-jack
ac_add_options --enable-pulseaudio
# wasi
#ac_add_options --with-wasi-sysroot=/usr/share/wasi-sysroot
# options for ci / weaker build systems
mk_add_options MOZ_PARALLEL_BUILD=1
mk_add_options MOZ_MAKE_FLAGS="-j4"
# ac_add_options --enable-linker=gold
# optimizations
ac_add_options OPT_LEVEL="2"
ac_add_options RUSTC_OPT_LEVEL="2"
END
if [[ "${CARCH}" == "aarch64" ]]; then
cat >>../mozconfig <<END
ac_add_options --enable-optimize="-g0 -O2"
ac_add_options --enable-lto
END
export MOZ_DEBUG_FLAGS=" "
export CFLAGS+=" -g0"
export CXXFLAGS+=" -g0"
export RUSTFLAGS="-Cdebuginfo=0"
else
cat >>../mozconfig <<END
# Arch upstream has it in their PKGBUILD, ALARM does not for aarch64:
ac_add_options --disable-elf-hack
ac_add_options --enable-lto=cross
END
fi
# reduce chance of builds failung during linking due to running out of memory
export LDFLAGS+=" -Wl,--no-keep-memory"
# upstream Arch fixes
#
}
build() {
_lw_srcdir=$srcdir/src/librewolf-$_ffsrcver-$_lwrelver
cd "${_lw_srcdir}"
export MACH_BUILD_PYTHON_NATIVE_PACKAGE_SOURCE=pip
export MOZBUILD_STATE_PATH="$srcdir/mozbuild"
export MOZ_BUILD_DATE="$(date -u${SOURCE_DATE_EPOCH:+d @$SOURCE_DATE_EPOCH} +%Y%m%d%H%M%S)"
export MOZ_NOSPAM=1
export MOZ_REQUIRE_SIGNING=
# 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/}"
CXXFLAGS="${CXXFLAGS/-v/}"
# sacrifice cpu for memory to prevent OoM
export LDFLAGS+=" -Wl,--no-keep-memory"
ulimit -n 4096
# Do 3-tier PGO
if [[ "${_build_profiled}" == "true" ]]; then
if [[ "${CARCH}" == "aarch64" ]]; then
cat >.mozconfig ../mozconfig - <<END
ac_add_options --enable-profile-generate
export MOZ_ENABLE_FULL_SYMBOLS=1
END
else
cat >.mozconfig ../mozconfig - <<END
ac_add_options --enable-profile-generate=cross
export MOZ_ENABLE_FULL_SYMBOLS=1
END
fi
# temporarily disable ublock-origin, interferes with profiling
cp "lw/policies.json" "$srcdir/policies.json"
jq 'del(.policies.Extensions.Install)' "$srcdir/policies.json" > "lw/policies.json"
echo "Building instrumented browser..."
./mach build --priority normal
echo "Profiling instrumented browser..."
./mach package
local _headless_env=(
LIBGL_ALWAYS_SOFTWARE=true \
LLVM_PROFDATA=llvm-profdata \
JARLOG_FILE="$PWD/jarlog" \
dbus-run-session
)
if [[ "${_build_profiled_xvfb}" == "true" ]]; then
local _headless_run=(
xvfb-run
-s "-screen 0 1920x1080x24 -nolisten local"
)
else
local _headless_run=(
wlheadless-run
-c weston --width=1920 --height=1080
)
fi
env "${_headless_env[@]}" "${_headless_run[@]}" -- ./mach python build/pgo/profileserver.py
echo "Removing instrumented browser..."
./mach clobber objdir
echo "Building optimized browser..."
if [[ -s merged.profdata ]]; then
stat -c "Profile data found (%s bytes)" merged.profdata
if [[ "${CARCH}" == "x86_64" ]]; then
cat >.mozconfig ../mozconfig - <<END
ac_add_options --enable-profile-use
END
else
cat >.mozconfig ../mozconfig - <<END
ac_add_options --enable-profile-use=cross
END
fi
cat >> .mozconfig - << END
ac_add_options --with-pgo-profile-path=${PWD@Q}/merged.profdata
END
else
echo "Profile data not found."
fi
if [[ -s jarlog ]]; then
stat -c "Jar log found (%s bytes)" jarlog
cat >> .mozconfig - << END
ac_add_options --with-pgo-jarlog=${PWD@Q}/jarlog
END
else
echo "Jar log not found."
fi
# reenable ublock-origin
cp "$srcdir/policies.json" "lw/policies.json"
else
cat >.mozconfig ../mozconfig
fi
rm -f ../mozconfig ./mozconfig
./mach build --priority normal
}
package() {
_lw_srcdir=$srcdir/src/librewolf-$_ffsrcver-$_lwrelver
cd "${_lw_srcdir}"
DESTDIR="$pkgdir" ./mach install
local vendorjs="$pkgdir/usr/lib/$__pkgname/browser/defaults/preferences/vendor.js"
install -Dvm644 /dev/stdin "$vendorjs" <<END
// Use system-provided dictionaries
pref("spellchecker.dictionary_path", "/usr/share/hunspell");
END
local distini="$pkgdir/usr/lib/$__pkgname/distribution/distribution.ini"
install -Dvm644 /dev/stdin "$distini" <<END
[Global]
id=org.codeberg.konform
version=1.0
about=Konform
[Preferences]
app.distributor="Konform Konsurtium"
app.distributor.channel=$__pkgname
app.partner.librewolf=$__pkgname
END
for i in 16 32 48 64 128; do
install -Dvm644 browser/branding/librewolf/default$i.png \
"$pkgdir/usr/share/icons/hicolor/${i}x${i}/apps/$__pkgname.png"
done
install -Dvm644 ${srcdir}/default192x192.png \
"$pkgdir/usr/share/icons/hicolor/192x192/apps/$__pkgname.png"
# arch upstream provides a separate svg for this. we don't have that, so let's re-use 16.png
install -Dvm644 browser/branding/librewolf/default16.png \
"$pkgdir/usr/share/icons/hicolor/symbolic/apps/$__pkgname-symbolic.png"
install -Dvm644 ${srcdir}/$__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/konform "\$@"
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/konform-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
}
|