Skip to content
Snippets Groups Projects
Commit 327305f6 authored by Aaron Griffin's avatar Aaron Griffin
Browse files

Initial commit of community repo into svn

parents
No related branches found
Tags 1-1
No related merge requests found
PKGBUILD 0 → 100644
# $Id: PKGBUILD,v 1.12 2009/06/28 11:33:24 mherych Exp $
# Maintainer: Mateusz Herych <heniekk@gmail.com>
# Contributor: Army <uli[dot]armbruster[at]gmail[dot]com>
pkgname=ncmpcpp
pkgver=0.3.5
pkgrel=1
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=('7e30bacf83be88b6931e3d70a16e33e4')
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
}
pre_install() {
/bin/true
}
post_install() {
echo "Example configuration files can be found in"
echo "/usr/share/doc/ncmpcpp"
}
pre_upgrade() {
/bin/true
}
post_upgrade() {
/bin/true
}
pre_remove() {
/bin/true
}
post_remove() {
/bin/true
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment