contrib/ncmpc/Pkgfile

30 lines
693 B
Plaintext
Raw Normal View History

# Description: Ncurse-based MPD console client
2008-05-19 23:33:25 +02:00
# URL: http://www.musicpd.org/
# Maintainer: Thomas Penteker, tek at serverop dot de
2008-05-19 23:33:25 +02:00
# Packager: James Mills, prologic at shortcircuit dot net dot au
2010-01-10 19:42:09 +01:00
# Depends on: ncurses libmpdclient
2006-11-14 00:01:22 +01:00
name=ncmpc
2011-08-01 23:49:24 +02:00
version=0.19
2009-04-22 15:15:32 +02:00
release=1
source=(http://download.sourceforge.net/musicpd/$name-$version.tar.bz2)
2006-11-14 00:01:22 +01:00
build() {
2008-05-19 23:33:25 +02:00
cd $name-$version
2008-05-19 23:33:25 +02:00
./configure \
2009-04-22 15:15:32 +02:00
--sysconfdir=/etc \
2008-05-19 23:33:25 +02:00
--prefix=/usr \
2009-04-22 15:15:32 +02:00
--mandir=/usr/man \
2008-05-19 23:33:25 +02:00
--disable-nls
make
make install DESTDIR=$PKG
2006-11-14 00:01:22 +01:00
2009-04-22 15:15:32 +02:00
mkdir -p $PKG/etc/ncmpc
2006-11-14 00:01:22 +01:00
2009-04-22 15:15:32 +02:00
install -m 0644 doc/config.sample $PKG/etc/ncmpc/config
install -m 0644 doc/keys.sample $PKG/etc/ncmpc/keys
2008-05-19 23:33:25 +02:00
rm -rf $PKG/usr/share
2006-11-14 00:01:22 +01:00
}