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
|