2fc2191845
alsa-lib is optional, not mandatory, since the addition of the package
in commit 18a8630637
Moreover, alsa support depends on BR2_PACKAGE_ALSA_LIB_SEQ (otherwise,
it is silently disabled)
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
31 lines
1.1 KiB
Plaintext
31 lines
1.1 KiB
Plaintext
config BR2_PACKAGE_ZYNADDSUBFX
|
|
bool "zynaddsubfx"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++11
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # liblo
|
|
select BR2_PACKAGE_FFTW
|
|
select BR2_PACKAGE_FFTW_SINGLE
|
|
select BR2_PACKAGE_LIBLO
|
|
select BR2_PACKAGE_MXML
|
|
select BR2_PACKAGE_ZLIB
|
|
help
|
|
ZynAddSubFX is a fully featured open source software
|
|
synthesizer capable of making a countless number of
|
|
instruments, from some common heard from expensive hardware
|
|
to interesting sounds that you'll boost to an amazing
|
|
universe of sounds.
|
|
|
|
Note: this Buildroot package does not include the graphical
|
|
user interface. It is meant to be executed as a headless
|
|
daemon to be controlled with MIDI events or network OSC
|
|
(Open Sound Control) events. OSC events can be generated
|
|
from an external system with the ZynAddSubFX external GUI
|
|
program zynaddsubfx-ext-gui.
|
|
|
|
https://zynaddsubfx.sourceforge.io/
|
|
|
|
comment "zynaddsubfx needs a toolchain w/ C++11 and threads"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || \
|
|
!BR2_TOOLCHAIN_HAS_THREADS
|