diff options
-rw-r--r-- | community/audacious-plugins/APKBUILD | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/community/audacious-plugins/APKBUILD b/community/audacious-plugins/APKBUILD index 669b39a21f..a02440fce8 100644 --- a/community/audacious-plugins/APKBUILD +++ b/community/audacious-plugins/APKBUILD @@ -3,7 +3,7 @@ # Maintainer: Ariadne Conill <ariadne@dereferenced.org> pkgname=audacious-plugins pkgver=4.0.2 -pkgrel=0 +pkgrel=1 pkgdesc="A playlist-oriented media player with multiple interfaces (plugins)" url="https://audacious-media-player.org/" arch="all !s390x" @@ -40,8 +40,13 @@ makedepends=" autoconf " subpackages="$pkgname-lang $pkgname-dbg" -source="http://distfiles.audacious-media-player.org/$pkgname-$pkgver.tar.bz2" -options="!check" # No test suite (or any plans for one) +source="http://distfiles.audacious-media-player.org/audacious-plugins-$pkgver.tar.bz2" +options="!check" # No test suite (or any plans for one) + +case "$CTARGET_ARCH" in + arm*|aarch64) _qtglspectrum="--disable-qtglspectrum" ;; + *) _qtglspectrum="--enable-qtglspectrum" ;; +esac build() { ./configure \ @@ -52,7 +57,8 @@ build() { --mandir=/usr/share/man \ --infodir=/usr/share/info \ --disable-gtk \ - --enable-qt + --enable-qt \ + $_qtglspectrum make } |