snapclient: update to 0.15.0

This commit is contained in:
awiouy 2018-05-21 15:25:02 +02:00
parent 39f46a4495
commit 8bbf79a681
2 changed files with 11 additions and 3 deletions

View File

@ -1,3 +1,7 @@
102
- Update to 0.15.0
- Add alsa-plugins
101
- Always restart service
- Improve latency setting

View File

@ -17,11 +17,11 @@
################################################################################
PKG_NAME="snapclient"
PKG_VERSION="0.13.0"
PKG_REV="101"
PKG_VERSION="0.15.0"
PKG_REV="102"
PKG_ARCH="any"
PKG_LICENSE="GPLv3"
PKG_DEPENDS_TARGET="toolchain snapcast"
PKG_DEPENDS_TARGET="toolchain alsa-plugins snapcast"
PKG_SECTION="service"
PKG_SHORTDESC="Snapclient: Synchronous multi-room audio client"
PKG_LONGDESC="Snapclient ($PKG_VERSION) is a Snapcast client. Snapcast is a multi-room client-server audio system, where all clients are time synchronized with the server to play perfectly synced audioplays."
@ -36,4 +36,8 @@ addon() {
mkdir -p "$ADDON_BUILD/$PKG_ADDON_ID/bin"
cp "$(get_build_dir snapcast)/client/snapclient" \
"$ADDON_BUILD/$PKG_ADDON_ID/bin"
mkdir -p "$ADDON_BUILD/$PKG_ADDON_ID/lib"
cp "$(get_build_dir alsa-plugins)/.install_pkg/usr/lib/alsa"/*.so \
"$ADDON_BUILD/$PKG_ADDON_ID/lib"
}