mirror of
https://github.com/OpenVoiceOS/OpenVoiceOS
synced 2024-12-26 16:53:47 +01:00
73ffd6fd6e
- Configuration opts are in /etc/snapcast/ - Server configuration in /etc/snapcast.conf - NOT enabled by default, can be started/enabled by; sudo systemctl start/enable snapclient.service sudo systemctl start/emable snapserver.service
38 lines
849 B
Plaintext
38 lines
849 B
Plaintext
config BR2_PACKAGE_SNAPCAST
|
|
bool "snapcast"
|
|
depends on BR2_USE_MMU # avahi
|
|
depends on !BR2_STATIC_LIBS # avahi
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
select BR2_PACKAGE_AVAHI
|
|
select BR2_PACKAGE_AVAHI_DAEMON
|
|
select BR2_PACKAGE_BOOST
|
|
select BR2_PACKAGE_DBUS
|
|
select BR2_PACKAGE_FLAC
|
|
select BR2_PACKAGE_LIBVORBIS
|
|
select BR2_PACKAGE_OPUS
|
|
help
|
|
Synchronous multi-room audio player
|
|
|
|
https://github.com/badaix/snapcast
|
|
|
|
if BR2_PACKAGE_SNAPCAST
|
|
|
|
config BR2_PACKAGE_SNAPCAST_CLIENT
|
|
bool "Snapclient"
|
|
default y
|
|
help
|
|
Snapcast client
|
|
|
|
config BR2_PACKAGE_SNAPCAST_SERVER
|
|
bool "Snapserver"
|
|
help
|
|
Snapcast server
|
|
|
|
endif
|
|
|
|
comment "Snapcast needs a toolchain w/ C++, threads, dynamic library"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS \
|
|
|| BR2_STATIC_LIBS
|