contrib/mpd/Pkgfile

33 lines
866 B
Plaintext
Raw Normal View History

2009-09-19 17:55:10 +02:00
# Description: Music playback daemon
# URL: http://www.musicpd.org/
# Maintainer: Thomas Penteker, tek at serverop dot de
# Packager: Mark Rosenstand, mark at borkware dot net
2019-01-25 00:50:25 +01:00
# Depends on: libmad libvorbis libid3tag glib boost meson ninja
# Optional: faad2 flac audiofile
2006-10-22 10:48:54 +02:00
name=mpd
2019-01-25 00:50:25 +01:00
version=0.21.4
2006-10-22 10:48:54 +02:00
release=1
2019-01-25 00:50:25 +01:00
source=(https://www.musicpd.org/download/mpd/${version%.*}/$name-$version.tar.xz mpd)
2006-10-22 10:48:54 +02:00
build() {
2009-09-19 17:55:10 +02:00
cd $name-$version
2007-09-07 21:03:58 +02:00
2019-01-25 00:50:25 +01:00
meson build \
2009-09-19 17:55:10 +02:00
--prefix=/usr \
--sysconfdir=/etc \
-Dmpcdec=disabled
2013-10-24 12:06:49 +02:00
2019-01-25 00:50:25 +01:00
ninja -C build -j ${JOBS-1}
DESTDIR=$PKG meson install -C build
2007-09-07 21:03:58 +02:00
install -d $PKG/etc
2009-09-19 17:55:10 +02:00
install -m 0644 doc/mpdconf.example $PKG/etc/mpd.conf
2016-07-19 01:13:34 +02:00
install -D $SRC/mpd $PKG/etc/rc.d/mpd
2007-09-07 21:03:58 +02:00
2019-01-25 00:50:25 +01:00
install -D doc/mpd.1 $PKG/usr/share/man/1/mpd.1
install -D doc/mpd.conf.5 $PKG/usr/share/man/5/mpd.conf.5
rm -r $PKG/usr/share/doc
2006-10-22 10:48:54 +02:00
}