summaryrefslogtreecommitdiff
path: root/mpd/Pkgfile
diff options
context:
space:
mode:
authorThomas Penteker <tek@serverop.de>2019-01-25 00:50:25 +0100
committerThomas Penteker <tek@serverop.de>2019-01-25 00:50:25 +0100
commit9c842e99c19ecaf838f14c1baccff67aa08d712b (patch)
treea4efad01c55389dd2a8795e0dbbb934dbf7ac4d0 /mpd/Pkgfile
parentce716b345f5d6c3eb767eae103c14331221987f2 (diff)
downloadcontrib-9c842e99c19ecaf838f14c1baccff67aa08d712b.tar.gz
contrib-9c842e99c19ecaf838f14c1baccff67aa08d712b.tar.xz
mpd: 0.20.9 -> 0.21.4 closes FS#1700
Diffstat (limited to 'mpd/Pkgfile')
-rw-r--r--mpd/Pkgfile15
1 files changed, 9 insertions, 6 deletions
diff --git a/mpd/Pkgfile b/mpd/Pkgfile
index 416164fec..2c2a1ee86 100644
--- a/mpd/Pkgfile
+++ b/mpd/Pkgfile
@@ -2,27 +2,30 @@
# URL: http://www.musicpd.org/
# Maintainer: Thomas Penteker, tek at serverop dot de
# Packager: Mark Rosenstand, mark at borkware dot net
-# Depends on: libmad libvorbis libid3tag glib boost
+# Depends on: libmad libvorbis libid3tag glib boost meson ninja
# Optional: faad2 flac audiofile
name=mpd
-version=0.20.9
+version=0.21.4
release=1
-source=(https://www.musicpd.org/download/mpd/0.20/$name-$version.tar.xz mpd)
+source=(https://www.musicpd.org/download/mpd/${version%.*}/$name-$version.tar.xz mpd)
build() {
cd $name-$version
- ./configure \
+ meson build \
--prefix=/usr \
--sysconfdir=/etc
- make
- make DESTDIR=$PKG install
+ ninja -C build -j ${JOBS-1}
+ DESTDIR=$PKG meson install -C build
install -d $PKG/etc
install -m 0644 doc/mpdconf.example $PKG/etc/mpd.conf
install -D $SRC/mpd $PKG/etc/rc.d/mpd
+ 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
}

Generated by cgit