diff options
Diffstat (limited to 'libre')
-rw-r--r-- | libre/audacious-plugins-libre/PKGBUILD | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/libre/audacious-plugins-libre/PKGBUILD b/libre/audacious-plugins-libre/PKGBUILD index aca8c9a8d..b29567abf 100644 --- a/libre/audacious-plugins-libre/PKGBUILD +++ b/libre/audacious-plugins-libre/PKGBUILD @@ -4,7 +4,7 @@ pkgname=audacious-plugins-libre pkgver=2.4.4 -pkgrel=2 +pkgrel=3 pkgdesc='Plugins for Audacious without unfree plugins' arch=('i686' 'x86_64') url='http://audacious-media-player.org/' @@ -63,15 +63,19 @@ mksource(){ build() { cd "$srcdir/$pkgname-$pkgver" + + sed 's/libavcore >= 0.12.0//g' -i configure # FS#23549 + + [[ $CARCH == x86_64 ]] && extraopts='' || extraopts='--disable-sse2' ./configure \ - --build=$CHOST \ - --host=$CHOST \ - --target=$CHOST \ --prefix=/usr \ --enable-chardet \ --enable-amidiplug \ --disable-adplug \ - --disable-psf + --disable-psf \ + $extraopts \ + --disable-projectm # no support for projectm-2.0.1, cf. FS#21344 + # would require libvisual-projectm in make/optdeps make } @@ -79,5 +83,4 @@ package() { cd "$srcdir/$pkgname-$pkgver" make DESTDIR="$pkgdir" install } - md5sums=('df761a2d07e2ad1221c5fe61fa32dcb0') |