mpd: initial import

This commit is contained in:
Mark Rosenstand 2006-10-22 10:48:54 +02:00
parent c9ec9b008e
commit 026a5eb903
3 changed files with 33 additions and 0 deletions

10
mpd/.footprint Normal file
View File

@ -0,0 +1,10 @@
drwxr-xr-x root/root etc/
-rw-r--r-- root/root etc/mpd.conf
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/mpd
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/mpd.1.gz
drwxr-xr-x root/root usr/man/man5/
-rw-r--r-- root/root usr/man/man5/mpd.conf.5.gz

1
mpd/.md5sum Normal file
View File

@ -0,0 +1 @@
c980cf373fafacdab6734f2ebfb13cbd mpd-0.12.1.tar.bz2

22
mpd/Pkgfile Normal file
View File

@ -0,0 +1,22 @@
# Description: Music playback daemon
# URL: http://www.musicpd.org/
# Maintainer: Mark Rosenstand, mark at borkware dot net
# Depends on: faad2, flac, libid3tag, libmad, libmikmod, libvorbis
name=mpd
version=0.12.1
release=1
source=(http://www.musicpd.org/uploads/files/mpd-$version.tar.bz2)
build() {
cd mpd-$version
./configure \
--prefix=/usr \
--disable-static
make
make DESTDIR=$PKG install
mkdir -p $PKG/etc
cp doc/mpdconf.example $PKG/etc/mpd.conf
rm -r $PKG/usr/share/doc
rmdir $PKG/usr/share
}