a6ada2c946
After spending a couple of hours on it today, I'm still unable to get speech-tools to build and install properly with a uClibc toolchain. So I'm giving up. Mark the entire thing broken as the text-to-speech stuff is unlikely to be used very much on the kind of small systems we're targetting. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
28 lines
653 B
Plaintext
28 lines
653 B
Plaintext
menuconfig BR2_PACKAGE_FESTIVAL
|
|
bool "festival text-to-speech system"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BROKEN # doesn't build
|
|
select BR2_PACKAGE_ALSA_LIB
|
|
select BR2_PACKAGE_SPEECH_TOOLS
|
|
help
|
|
Text to speech system for Linux
|
|
|
|
if BR2_PACKAGE_FESTIVAL
|
|
|
|
menu "speech tools"
|
|
source "package/multimedia/festival/speech-tools/Config.in"
|
|
endmenu
|
|
|
|
menu "festival lexicons"
|
|
source "package/multimedia/festival/lexicons/Config.in"
|
|
endmenu
|
|
|
|
menu "festival voices"
|
|
source "package/multimedia/festival/voices/Config.in"
|
|
endmenu
|
|
|
|
endif
|
|
|
|
comment "festival requires a toolchain with C++ support enabled"
|
|
depends on !BR2_INSTALL_LIBSTDCPP
|