summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD5
2 files changed, 5 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 0590720c1a5e..864ccd07c7f7 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = snapcast
pkgdesc = Synchronous multi-room audio player
pkgver = 0.23.0
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/badaix/snapcast
install = snapcast.install
arch = x86_64
@@ -19,6 +19,7 @@ pkgbase = snapcast
depends = opus
depends = expat
depends = libsoxr
+ depends = libpulse
backup = etc/default/snapserver
backup = etc/default/snapclient
backup = etc/snapserver.conf
diff --git a/PKGBUILD b/PKGBUILD
index c4265dffb424..22da49eea839 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,12 +2,12 @@
pkgname=snapcast
pkgver=0.23.0
-pkgrel=1
+pkgrel=2
pkgdesc="Synchronous multi-room audio player"
arch=('x86_64' 'armv6h' 'armv7h' 'aarch64')
url="https://github.com/badaix/snapcast"
license=('GPL')
-depends=(alsa-lib avahi libvorbis flac opus expat libsoxr)
+depends=(alsa-lib avahi libvorbis flac opus expat libsoxr libpulse)
makedepends=(cmake alsa-utils boost)
install="snapcast.install"
backup=('etc/default/snapserver' 'etc/default/snapclient' 'etc/snapserver.conf')
@@ -57,6 +57,7 @@ package() {
# install documentation
install -d "${pkgdir}/usr/share/doc/${pkgname}"
cp -R doc/* "${pkgdir}/usr/share/doc/${pkgname}/"
+ install -Dm644 "changelog.md" "${pkgdir}/usr/share/doc/${pkgname}"
find "${pkgdir}"/usr/share/doc/${pkgname} -type f -exec chmod 0644 {} \;
find "${pkgdir}"/usr/share/doc/${pkgname} -type d -exec chmod 0755 {} \;