snapcast: update to 0.26.0
This commit is contained in:
parent
753b8f45ba
commit
31da410a73
2 changed files with 22 additions and 2 deletions
19
srcpkgs/snapcast/patches/meta_mpd.py-permission-fix.patch
Normal file
19
srcpkgs/snapcast/patches/meta_mpd.py-permission-fix.patch
Normal file
|
@ -0,0 +1,19 @@
|
|||
This patch fixes an issue where meta_mpd.py is installed with executable
|
||||
permissions only. This results in a 'Permission denied' message for
|
||||
03-rewrite-python-shebang, and a fatal error for xbps-create when processing
|
||||
the file hash. Fixed upstream in 7ab3daa.
|
||||
|
||||
https://github.com/badaix/snapcast/issues/1021
|
||||
|
||||
diff --git a/server/CMakeLists.txt b/server/CMakeLists.txt
|
||||
index e1271b80..25432cd5 100644
|
||||
--- a/server/CMakeLists.txt
|
||||
+++ b/server/CMakeLists.txt
|
||||
@@ -117,6 +117,6 @@ else()
|
||||
install(FILES etc/snapserver.conf COMPONENT server DESTINATION ${CMAKE_INSTALL_SYSCONFDIR})
|
||||
install(FILES etc/index.html COMPONENT server DESTINATION ${CMAKE_INSTALL_DATADIR}/snapserver)
|
||||
install(DIRECTORY etc/snapweb/ DESTINATION ${CMAKE_INSTALL_DATADIR}/snapserver/snapweb)
|
||||
- install(FILES etc/plug-ins/meta_mpd.py PERMISSIONS OWNER_EXECUTE GROUP_EXECUTE WORLD_EXECUTE DESTINATION ${CMAKE_INSTALL_DATADIR}/snapserver/plug-ins/)
|
||||
+ install(FILES etc/plug-ins/meta_mpd.py PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE DESTINATION ${CMAKE_INSTALL_DATADIR}/snapserver/plug-ins/)
|
||||
#install(FILES ../debian/snapserver.service DESTINATION ${SYSTEMD_SERVICES_INSTALL_DIR})
|
||||
endif()
|
|
@ -1,6 +1,6 @@
|
|||
# Template file for 'snapcast'
|
||||
pkgname=snapcast
|
||||
version=0.25.0
|
||||
version=0.26.0
|
||||
revision=1
|
||||
build_style=cmake
|
||||
configure_args="-DCMAKE_INSTALL_SYSCONFDIR=/etc -DBUILD_WITH_TREMOR=OFF
|
||||
|
@ -14,8 +14,9 @@ short_desc="Synchronous multi-room audio player"
|
|||
maintainer="amak <amak.git@outlook.com>"
|
||||
license="GPL-3.0-or-later"
|
||||
homepage="https://github.com/badaix/snapcast"
|
||||
changelog="https://raw.githubusercontent.com/badaix/snapcast/master/changelog.md"
|
||||
distfiles="https://github.com/badaix/snapcast/archive/v${version}.tar.gz"
|
||||
checksum=c4e449cb693e091261727421f4965492be049632537e034fa9c59c92d091a846
|
||||
checksum=166353267a5c461a3a0e7cbd05d78c4bfdaebeda078801df3b76820b54f27683
|
||||
|
||||
build_options="avahi pulseaudio"
|
||||
build_options_default="avahi pulseaudio"
|
||||
|
|
Loading…
Add table
Reference in a new issue