contrib/mpd/Pkgfile

30 lines
880 B
Plaintext
Raw Normal View History

2009-09-19 17:55:10 +02:00
# Description: Music playback daemon
2020-06-01 17:45:48 +02:00
# URL: https://www.musicpd.org/
2009-09-19 17:55:10 +02:00
# Maintainer: Thomas Penteker, tek at serverop dot de
2020-01-08 15:05:58 +01:00
# Depends on: boost glib libid3tag libmad libvorbis
# Optional: faad2 flac audiofile
2006-10-22 10:48:54 +02:00
name=mpd
2020-07-08 12:47:38 +02:00
version=0.21.25
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() {
2020-07-08 12:47:38 +02:00
meson $name-$version build \
2009-09-19 17:55:10 +02:00
--prefix=/usr \
--sysconfdir=/etc \
2020-07-08 12:47:38 +02:00
-Ddocumentation=false \
-Dmpcdec=disabled
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
2020-07-08 12:47:38 +02:00
install -m 0644 $SRC/$name-$version/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
2020-07-08 12:47:38 +02:00
install -D $SRC/$name-$version/doc/mpd.1 $PKG/usr/share/man/1/mpd.1
install -D $SRC/$name-$version/doc/mpd.conf.5 $PKG/usr/share/man/5/mpd.conf.5
2019-01-25 00:50:25 +01:00
rm -r $PKG/usr/share/doc
2006-10-22 10:48:54 +02:00
}