mpd: 0.20.9 -> 0.21.4 closes FS#1700

This commit is contained in:
Thomas Penteker 2019-01-25 00:50:25 +01:00
parent ce716b345f
commit 9c842e99c1
3 changed files with 22 additions and 14 deletions

View File

@ -6,8 +6,13 @@ drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/mpd
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/icons/
drwxr-xr-x root/root usr/share/icons/hicolor/
drwxr-xr-x root/root usr/share/icons/hicolor/scalable/
drwxr-xr-x root/root usr/share/icons/hicolor/scalable/apps/
-rw-r--r-- root/root usr/share/icons/hicolor/scalable/apps/mpd.svg
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/mpd.1.gz
drwxr-xr-x root/root usr/share/man/man5/
-rw-r--r-- root/root usr/share/man/man5/mpd.conf.5.gz
drwxr-xr-x root/root usr/share/man/1/
-rwxr-xr-x root/root usr/share/man/1/mpd.1
drwxr-xr-x root/root usr/share/man/5/
-rwxr-xr-x root/root usr/share/man/5/mpd.conf.5

View File

@ -1,6 +1,6 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF37CQtTuFZQ5zAoaqyxss9/GpobcITtXfdzm3Uu3PSY4e331/LnehCBudFpGQOULTnXwRKIHVPALebpExhWaZmgA=
SHA256 (Pkgfile) = 0ea68beebb900ddd92c647da79177248ad28491e19c80296b2c879f780214c79
SHA256 (.footprint) = 49f4ed7759810da655b99e19f38005afc4be6c50f66468d1404407ceb60713d9
SHA256 (mpd-0.20.9.tar.xz) = cd77a2869e32354b004cc6b34fcb0bee56114caa2d9ed862aaa8071441e34eb7
RWSagIOpLGJF3908k+2dXISxgcFAIBHC4TTlFflDUl7t7WJ8irXjQiRGcfXgdKY2hk8abWnTw9FQPcAjrcqhjTv+8zPew8g4HAI=
SHA256 (Pkgfile) = 3813037d719408543dc0e9977c52f6916c6d13cd3b9b2c1fdca9053057abac4d
SHA256 (.footprint) = 20710b1b34a90ced09c31dfb096e721edd6bb59f51e92507b55806792bd52d3e
SHA256 (mpd-0.21.4.tar.xz) = 247112eabf1b818a4052db7f0f5917ab00831ebc60a1ec3bf1154da4dc16a5c7
SHA256 (mpd) = ec90dbf45d72c30b0837e2caed55df9c28b00416a92838012e1aea8cfe704ce3

View File

@ -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
}