21 lines
487 B
Plaintext
21 lines
487 B
Plaintext
# Description: Music playback daemon
|
|
# URL: http://www.musicpd.org/
|
|
# Maintainer: Mark Rosenstand, mark at borkware dot net
|
|
# Depends on: libid3tag, libmad, libvorbis
|
|
|
|
name=mpd
|
|
version=0.12.2
|
|
release=1
|
|
source=(http://www.musicpd.org/uploads/files/mpd-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd mpd-$version
|
|
./configure --prefix=/usr --mandir=/usr/man
|
|
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
|
|
}
|