summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMelvin Vermeeren2019-04-06 19:24:01 +0200
committerMelvin Vermeeren2019-04-06 19:24:01 +0200
commit1207968b4ac6d7b63cd821fc31192bb232dacb1b (patch)
tree83c1e7b6112ef3d12802d9f086c68f26b6afcfba
parentf1071f316feccc5b8b613e06b107d1c27bf2286a (diff)
downloadaur-1207968b4ac6d7b63cd821fc31192bb232dacb1b.tar.gz
update to 0.22.0
-rw-r--r--.SRCINFO10
-rw-r--r--PKGBUILD13
-rw-r--r--install5
3 files changed, 13 insertions, 15 deletions
diff --git a/.SRCINFO b/.SRCINFO
index f8d47424afd8..127bae69cbc9 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,9 @@
# Generated by mksrcinfo v8
-# Sun Mar 3 12:38:21 UTC 2019
+# Sat Apr 6 17:20:28 UTC 2019
pkgbase = mpd-sacd
pkgdesc = MPD with patches for SACD and DVDA ISO playback.
- pkgver = 0.21.5
- pkgrel = 4
+ pkgver = 0.22.0
+ pkgrel = 1
url = https://sourceforge.net/p/sacddecoder/mpd/MPD.git/ci/master/tree/
arch = i686
arch = x86_64
@@ -38,10 +38,10 @@ pkgbase = mpd-sacd
depends = libcdio-paranoia
depends = libgme
depends = zziplib
- provides = mpd=0.21.5
+ provides = mpd=0.22.0
conflicts = mpd
backup = etc/mpd.conf
- source = mpd::git+https://git.code.sf.net/p/sacddecoder/mpd/MPD.git#commit=f95306d636e5a2f79a198ff184c2e09ebd2f9039
+ source = mpd::git+https://git.code.sf.net/p/sacddecoder/mpd/MPD.git#commit=fad7f5c0627b4f4f91adec35a8a7f5569a62de09
source = sysusers.d
source = tmpfiles.d
source = conf
diff --git a/PKGBUILD b/PKGBUILD
index 9cb3ecb2fdd5..4adc16527fdc 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,8 +1,8 @@
# Maintainer: Melvin Vermeeren <mail@mel.vin>
pkgname=mpd-sacd
-pkgver=0.21.5
-pkgrel=4
+pkgver=0.22.0
+pkgrel=1
pkgdesc='MPD with patches for SACD and DVDA ISO playback.'
url='https://sourceforge.net/p/sacddecoder/mpd/MPD.git/ci/master/tree/'
license=('GPL')
@@ -14,7 +14,7 @@ depends=('libao' 'ffmpeg' 'libmodplug' 'audiofile' 'libshout' 'libmad' 'curl' 'f
makedepends=('boost' 'meson' 'python-sphinx')
conflicts=('mpd')
provides=("mpd=${pkgver}")
-source=('mpd::git+https://git.code.sf.net/p/sacddecoder/mpd/MPD.git#commit=f95306d636e5a2f79a198ff184c2e09ebd2f9039'
+source=('mpd::git+https://git.code.sf.net/p/sacddecoder/mpd/MPD.git#commit=fad7f5c0627b4f4f91adec35a8a7f5569a62de09'
'sysusers.d'
'tmpfiles.d'
'conf')
@@ -38,6 +38,7 @@ build() {
'-Dadplug=disabled' # not in an official repo
'-Dsndio=disabled' # interferes with detection of alsa devices
'-Dshine=disabled' # not in an official repo
+ '-Dtremor=disabled' # not in official repo
'-Dcdio_paranoia=enabled'
'-Diso9660=enabled'
'-Djack=enabled'
@@ -64,6 +65,8 @@ package() {
install -Dm644 ../../conf "${pkgdir}"/etc/mpd.conf
install -Dm644 ../../tmpfiles.d "${pkgdir}"/usr/lib/tmpfiles.d/mpd.conf
- sed '/\[Service\]/a User=mpd' -i "${pkgdir}"/usr/lib/systemd/system/mpd.service
- sed '/WantedBy=/c WantedBy=default.target' -i "${pkgdir}"/usr/lib/systemd/system/mpd.service
+ sed \
+ -e '/\[Service\]/a User=mpd' \
+ -e '/WantedBy=/c WantedBy=default.target' \
+ -i "${pkgdir}"/usr/lib/systemd/system/mpd.service
}
diff --git a/install b/install
deleted file mode 100644
index db43a90a14ea..000000000000
--- a/install
+++ /dev/null
@@ -1,5 +0,0 @@
-post_install() {
- getent group mpd &>/dev/null || groupadd -r -g 45 mpd >/dev/null
- getent passwd mpd &>/dev/null || useradd -r -u 45 -g mpd -d /var/lib/mpd -s /bin/false -G audio mpd >/dev/null
- usr/bin/systemd-tmpfiles --create mpd.conf || true
-}