# $Id: PKGBUILD 36886 2011-01-09 21:17:22Z mherych $ # Maintainer: Mateusz Herych # Contributor: Army pkgname=ncmpcpp pkgver=0.5.6 pkgrel=1 pkgdesc="An almost exact clone of ncmpc with some new features." arch=('i686' 'x86_64' 'mips64el') url="http://unkart.ovh.org/ncmpcpp/" license=('GPL') depends=('curl' 'libmpdclient' 'taglib' 'ncurses') install=ncmpcpp.install source=(http://unkart.ovh.org/ncmpcpp/${pkgname}-${pkgver}.tar.bz2) md5sums=('cdaf82694c0a1f5e9de65bb0a191e403') build() { cd "$srcdir/${pkgname}-${pkgver}" ./configure --prefix=/usr \ --enable-unicode \ --enable-clock \ --with-taglib \ --with-curl make } package() { cd "$srcdir/${pkgname}-${pkgver}" make DESTDIR="$pkgdir" install }