blob: b24dce84f4fcbe585c1fff8bbb7062dfa51e4d70 (
plain)
1 # Description: Library for the Command line MPD client
2 # URL: http://www.musicpd.org/mpc.shtml
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4
5 name=libmpdclient
6 version=2.5
7 release=1
8 source=(http://download.sourceforge.net/musicpd/$name/$version/$name-$version.tar.bz2)
9
10 build() {
11 cd $name-$version
12
13 ./configure \
14 --prefix=/usr \
15 --mandir=/usr/man
16 make
17 make DESTDIR=$PKG install
18
19 rm -rf $PKG/usr/share
20 }
|