mpd: 0.21.25 -> 0.21.26; adopted Package; moved config to /etc/mpd/.

This commit is contained in:
Tim Biermann 2020-09-22 20:15:02 +00:00
parent 53dfcca482
commit 3b05cacf6f
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 14 additions and 14 deletions

View File

@ -1,5 +1,6 @@
drwxr-xr-x root/root etc/
-rw-r--r-- root/root etc/mpd.conf
drwxr-xr-x root/root etc/mpd/
-rw-r--r-- root/root etc/mpd/mpd.conf
drwxr-xr-x root/root etc/rc.d/
-rwxr-xr-x root/root etc/rc.d/mpd
drwxr-xr-x root/root usr/

View File

@ -1,6 +1,6 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3xpkNbz/P0U6bHWzq/LqslVCFk92yJ8/qgrUIy4WivEtD8VZWFJPRO3eTr8VFurIpegJ+n2RwZbMvlHhhHzWkAk=
SHA256 (Pkgfile) = 8d8e4908afdb9159444db294af9101549d3e3a00c12805a1fff81b554dbfd5cb
SHA256 (.footprint) = 20710b1b34a90ced09c31dfb096e721edd6bb59f51e92507b55806792bd52d3e
SHA256 (mpd-0.21.25.tar.xz) = 20a0ad01bf327b2dbeb6ae8e1af952cb0de83d2d63fab0fa4b7183a74765c201
RWSagIOpLGJF3xqCSsjpaJich+ouwaPNbUzBlLCtXBuVIJmkjYRa3YnzNvrKTtf7pi/ea8/5Qy9ZuysgVlADQfcX4T/sFI+2Sgg=
SHA256 (Pkgfile) = 4b7d87a0796cb75d67112acdd47ba5f348703737bdc027a67761a60217b8d93e
SHA256 (.footprint) = f7cdce339573bdf6465644364bee3ba988799ace6e9bc11da20517eae3a56fc9
SHA256 (mpd-0.21.26.tar.xz) = f9e68221c7a6829ec02f281eb313b2f24182020f5eb65ab22b337e6169ea4eea
SHA256 (mpd) = ec90dbf45d72c30b0837e2caed55df9c28b00416a92838012e1aea8cfe704ce3

View File

@ -1,25 +1,24 @@
# Description: Music playback daemon
# URL: https://www.musicpd.org/
# Maintainer: Thomas Penteker, tek at serverop dot de
# Depends on: boost glib libid3tag libmad libvorbis
# Optional: faad2 flac audiofile
# Description: Music playback daemon
# URL: https://www.musicpd.org/
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: boost ninja meson
# Optional: faad2 flac audiofile
name=mpd
version=0.21.25
version=0.21.26
release=1
source=(https://www.musicpd.org/download/mpd/${version%.*}/$name-$version.tar.xz mpd)
build() {
meson $name-$version build \
--prefix=/usr \
--sysconfdir=/etc \
--sysconfdir=/etc/mpd \
-Ddocumentation=false \
-Dmpcdec=disabled
ninja -C build -j ${JOBS-1}
DESTDIR=$PKG meson install -C build
install -d $PKG/etc
install -m 0644 $SRC/$name-$version/doc/mpdconf.example $PKG/etc/mpd.conf
install -Dm 0644 $SRC/$name-$version/doc/mpdconf.example $PKG/etc/mpd/mpd.conf
install -D $SRC/mpd $PKG/etc/rc.d/mpd
install -D $SRC/$name-$version/doc/mpd.1 $PKG/usr/share/man/1/mpd.1