Config.in 1.1 KB

123456789101112131415161718192021222324252627282930
  1. config BR2_PACKAGE_ZYNADDSUBFX
  2. bool "zynaddsubfx"
  3. depends on BR2_INSTALL_LIBSTDCPP
  4. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++11
  5. depends on BR2_TOOLCHAIN_HAS_THREADS # liblo
  6. select BR2_PACKAGE_FFTW
  7. select BR2_PACKAGE_FFTW_SINGLE
  8. select BR2_PACKAGE_LIBLO
  9. select BR2_PACKAGE_MXML
  10. select BR2_PACKAGE_ZLIB
  11. help
  12. ZynAddSubFX is a fully featured open source software
  13. synthesizer capable of making a countless number of
  14. instruments, from some common heard from expensive hardware
  15. to interesting sounds that you'll boost to an amazing
  16. universe of sounds.
  17. Note: this Buildroot package does not include the graphical
  18. user interface. It is meant to be executed as a headless
  19. daemon to be controlled with MIDI events or network OSC
  20. (Open Sound Control) events. OSC events can be generated
  21. from an external system with the ZynAddSubFX external GUI
  22. program zynaddsubfx-ext-gui.
  23. https://zynaddsubfx.sourceforge.io/
  24. comment "zynaddsubfx needs a toolchain w/ C++11 and threads"
  25. depends on !BR2_INSTALL_LIBSTDCPP || \
  26. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || \
  27. !BR2_TOOLCHAIN_HAS_THREADS