diff options
author | Newbyte <newbie13xd@gmail.com> | 2022-04-18 14:19:53 +0200 |
---|---|---|
committer | alice <alice@ayaya.dev> | 2022-04-18 12:44:20 +0000 |
commit | da5fe3af58cea58a4a186272e1db55ec9359e384 (patch) | |
tree | b23612c4f9e7e70c63fdc5714640e173b35389ff | |
parent | b2882cbb59d39153ccffed74dee68b3524c7139d (diff) | |
download | aports-da5fe3af58cea58a4a186272e1db55ec9359e384.tar.gz aports-da5fe3af58cea58a4a186272e1db55ec9359e384.tar.bz2 aports-da5fe3af58cea58a4a186272e1db55ec9359e384.tar.xz |
community/gnome: only install gnome-authenticator on aarch64 and x86_64
gnome-authenticator is unavailable on other arches.
-rw-r--r-- | community/gnome/APKBUILD | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/community/gnome/APKBUILD b/community/gnome/APKBUILD index 1cbdf04c4c..3b803445aa 100644 --- a/community/gnome/APKBUILD +++ b/community/gnome/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Rasmus Thomsen <oss@cogitri.dev> pkgname=gnome pkgver=42 -pkgrel=0 +pkgrel=1 pkgdesc="GNOME (Base) meta package" url="https://www.gnome.org/" arch="all !s390x !riscv64" # GNOME isn't available on all arches yet @@ -113,7 +113,6 @@ _apps_extra() { ghex gitg gnome-apps-core - gnome-authenticator gnome-books gnome-boxes gnome-builder @@ -147,6 +146,10 @@ _apps_extra() { yelp " + if [ $ARCH = "aarch64" ] || [ $ARCH = "x86_64" ]; then + depends="$depends gnome-authenticator" + fi + mkdir -p "$subpkgdir" } |