Skip to content
Snippets Groups Projects
Commit 18d0bbdf authored by Bart Ribbers's avatar Bart Ribbers Committed by Natanael Copa
Browse files

community/audacious-plugins: disable QtGLSpectrum plugin on arm*

This enables us to build Qt5 with OpenGLES rather than OpenGL on ARM
platforms
parent a99a4868
No related branches found
No related tags found
1 merge request!7314community/qt5-qtbase: use OpenGLES on ARM again
......@@ -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
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment