# $Id: PKGBUILD 3714 2009-10-08 06:59:30Z mherych $ # Maintainer: Mateusz Herych # Contributor: Army pkgname=ncmpcpp pkgver=0.4.1 pkgrel=3 pkgdesc="An almost exact clone of ncmpc with some new features." arch=('i686' 'x86_64') url="http://unkart.ovh.org/ncmpcpp/" license=('GPL') depends=('curl' 'taglib' 'ncurses') install=${pkgname}.install source=(http://unkart.ovh.org/ncmpcpp/${pkgname}-${pkgver}.tar.bz2) md5sums=('120e15c8791f82c30671990bbf2022e1') build() { cd $srcdir/${pkgname}-${pkgver} ./configure --prefix=/usr \ --enable-unicode \ --enable-clock \ --with-taglib \ --with-curl || return 1 make || return 1 make DESTDIR="$pkgdir" install }