1
0
forked from ports/contrib

mpc: initial import

This commit is contained in:
Mark Rosenstand 2006-10-22 10:50:02 +02:00
parent 026a5eb903
commit 5f7f5ef7aa
3 changed files with 32 additions and 0 deletions

12
mpc/.footprint Normal file
View File

@ -0,0 +1,12 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/mpc
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/mpc.1.gz
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/mpc/
-rw-r--r-- root/root usr/share/mpc/m3u-handler.sh
-rw-r--r-- root/root usr/share/mpc/mpc-bashrc
-rw-r--r-- root/root usr/share/mpc/mppledit
-rw-r--r-- root/root usr/share/mpc/pls-handler.sh

1
mpc/.md5sum Normal file
View File

@ -0,0 +1 @@
2c419ea9e422532d73fb87d740fa2005 mpc-0.12.0.tar.gz

19
mpc/Pkgfile Normal file
View File

@ -0,0 +1,19 @@
# Description: Command line MPD client
# URL: http://www.musicpd.org/mpc.shtml
# Maintainer: Mark Rosenstand, mark at borkware dot net
name=mpc
version=0.12.0
release=1
source=(http://www.musicpd.org/uploads/files/mpc-$version.tar.gz)
build() {
cd mpc-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
cd $PKG/usr/share
rm doc/mpc/{AUTHORS,README}
mv doc/mpc/* mpc
rm -rv doc
}