PKGBUILDs/community/ncmpcpp/PKGBUILD
2009-10-09 21:15:33 -05:00

26 lines
733 B
Bash

# $Id: PKGBUILD 3714 2009-10-08 06:59:30Z mherych $
# Maintainer: Mateusz Herych <heniekk@gmail.com>
# Contributor: Army <uli[dot]armbruster[at]gmail[dot]com>
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
}