diff options
| author | emmett1 <emmett1.2miligrams@protonmail.com> | 2024-06-29 23:17:52 +0800 |
|---|---|---|
| committer | emmett1 <emmett1.2miligrams@protonmail.com> | 2024-06-29 23:17:52 +0800 |
| commit | 0dede68b734c7366d9e0f44d10cb3507ba5e0f33 (patch) | |
| tree | 49b19194e5dc7f55255751151dcaf8d1fb48bc4a /repos/extra/firefox | |
| parent | 376803af43d2d32a80219b8970961792f240230c (diff) | |
| download | alicelinux-0dede68b734c7366d9e0f44d10cb3507ba5e0f33.tar.gz alicelinux-0dede68b734c7366d9e0f44d10cb3507ba5e0f33.zip | |
move out wayland packages to its own repo
Diffstat (limited to 'repos/extra/firefox')
| -rw-r--r-- | repos/extra/firefox/.files | 1 | ||||
| -rw-r--r-- | repos/extra/firefox/abuild | 6 |
2 files changed, 5 insertions, 2 deletions
diff --git a/repos/extra/firefox/.files b/repos/extra/firefox/.files index d5a92868..3ff83380 100644 --- a/repos/extra/firefox/.files +++ b/repos/extra/firefox/.files @@ -40,7 +40,6 @@ drwxr-xr-x root/root usr/lib/firefox/gmp-clearkey/0.1/ -rwxr-xr-x root/root usr/lib/firefox/libmozgtk.so -rwxr-xr-x root/root usr/lib/firefox/libmozsandbox.so -rwxr-xr-x root/root usr/lib/firefox/libmozsqlite3.so --rwxr-xr-x root/root usr/lib/firefox/libmozwayland.so -rwxr-xr-x root/root usr/lib/firefox/libxul.so -rw-r--r-- root/root usr/lib/firefox/omni.ja -rwxr-xr-x root/root usr/lib/firefox/pingsender diff --git a/repos/extra/firefox/abuild b/repos/extra/firefox/abuild index 3b594f2d..b0b0c5b1 100644 --- a/repos/extra/firefox/abuild +++ b/repos/extra/firefox/abuild @@ -47,7 +47,11 @@ ac_add_options --disable-parental-controls ac_add_options --disable-system-extension-dirs EOF - [ -f $SPM_PKGDB/libx11 ] || echo "ac_add_options --enable-default-toolkit=cairo-gtk3-wayland-only" >> .mozconfig + if [ -f $SPM_PKGDB/libx11 ]; then + echo "ac_add_options --enable-default-toolkit=cairo-gtk3-x11-only" >> .mozconfig + elif [ -f $SPM_PKGDB/wayland ]; then + echo "ac_add_options --enable-default-toolkit=cairo-gtk3-wayland-only" >> .mozconfig + fi if [ -e '/usr/bin/ccache' ]; then echo 'ac_add_options --enable-ccache' >> .mozconfig |