diff options
author | Joshua Ismael Haase Hernández <hahj87@gmail.com> | 2011-04-23 23:05:21 -0500 |
---|---|---|
committer | Joshua Ismael Haase Hernández <hahj87@gmail.com> | 2011-04-23 23:05:21 -0500 |
commit | 8aef2d5ae234aea165ae2ce60b9e043d56bd9f9f (patch) | |
tree | 83b9fa9ba43170d64999b10589d41944ffe94120 /libre/audacious-plugins-libre/PKGBUILD | |
parent | 7e347b33306dba9cc5eb9ba1a6417bec9d3da096 (diff) | |
parent | 970781960c3e1a1941af155bf2cd755e13361a10 (diff) | |
download | abslibre-8aef2d5ae234aea165ae2ce60b9e043d56bd9f9f.tar.gz abslibre-8aef2d5ae234aea165ae2ce60b9e043d56bd9f9f.tar.bz2 abslibre-8aef2d5ae234aea165ae2ce60b9e043d56bd9f9f.zip |
Merge http://projects.parabolagnulinux.org/abslibre
Diffstat (limited to 'libre/audacious-plugins-libre/PKGBUILD')
-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') |