2020-09-22 20:15:02 +00:00
|
|
|
# Description: Music playback daemon
|
|
|
|
# URL: https://www.musicpd.org/
|
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
|
|
# Depends on: boost ninja meson
|
2020-09-24 20:53:34 +00:00
|
|
|
# Optional: faad2 flac audiofile python3-sphinx
|
2006-10-22 10:48:54 +02:00
|
|
|
|
|
|
|
name=mpd
|
2020-10-29 09:08:51 +00:00
|
|
|
version=0.22.2
|
2006-10-22 10:48:54 +02:00
|
|
|
release=1
|
2020-10-20 11:22:29 +00:00
|
|
|
#source=(https://www.musicpd.org/download/mpd/$version/$name-$version.tar.xz mpd)
|
|
|
|
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 \
|
2020-09-24 20:53:34 +00:00
|
|
|
--prefix=/usr \
|
|
|
|
--sysconfdir=/etc/mpd \
|
|
|
|
-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
|
|
|
|
2020-09-22 20:15:02 +00:00
|
|
|
install -Dm 0644 $SRC/$name-$version/doc/mpdconf.example $PKG/etc/mpd/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
|
|
|
|
2017-06-25 22:45:03 +10:00
|
|
|
rm -r $PKG/usr/share/doc
|
2006-10-22 10:48:54 +02:00
|
|
|
}
|