diff options
Diffstat (limited to 'community/ncmpcpp/PKGBUILD')
-rw-r--r-- | community/ncmpcpp/PKGBUILD | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/community/ncmpcpp/PKGBUILD b/community/ncmpcpp/PKGBUILD index 814376e0e..c3ccc6166 100644 --- a/community/ncmpcpp/PKGBUILD +++ b/community/ncmpcpp/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 80192 2012-11-17 14:06:36Z bpiotrowski $ +# $Id: PKGBUILD 80358 2012-11-20 16:00:53Z bpiotrowski $ # Maintainer: Bartłomiej Piotrowski # Contributor: graysky <graysky AT archlinux DOT us> # Contributor: Mateusz Herych <heniekk@gmail.com> @@ -6,12 +6,12 @@ pkgname=ncmpcpp pkgver=0.5.10 -pkgrel=3 +pkgrel=4 pkgdesc='Almost exact clone of ncmpc with some new features' arch=('i686' 'x86_64') url='http://ncmpcpp.rybczak.net/' license=('GPL') -depends=('curl' 'libmpdclient' 'taglib' 'ncurses') +depends=('curl' 'libmpdclient' 'taglib' 'ncurses' 'fftw') install=ncmpcpp.install source=(http://ncmpcpp.rybczak.net/stable/$pkgname-$pkgver.tar.bz2) md5sums=('298ed66325bcfe358e37e186c7ea4861') @@ -19,11 +19,13 @@ md5sums=('298ed66325bcfe358e37e186c7ea4861') build() { cd $srcdir/$pkgname-$pkgver ./configure --prefix=/usr \ - --enable-unicode \ --enable-clock \ - --with-taglib \ --enable-outputs \ - --with-curl + --enable-unicode \ + --enable-visualizer \ + --with-curl \ + --with-fftw \ + --with-taglib make } |