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