PKGBUILDs/community/ncmpcpp/PKGBUILD

27 lines
733 B
Bash
Raw Normal View History

2009-10-10 02:15:33 +00:00
# $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
}