fontconfig: needs host-gperf
[buildroot-gz.git] / package / mimic / Config.in
blob79641d37902e6456bee9e9d93004390214fd0fec
1 comment "mimic needs a toolchain w/ wchar"
2         depends on !BR2_USE_WCHAR
4 config BR2_PACKAGE_MIMIC
5         bool "mimic"
6         depends on BR2_USE_WCHAR
7         help
8           Mimic is a fast, lightweight Text-to-speech engine developed
9           by Mycroft A.I. and VocaliD, based on Carnegie Mellon
10           University's Flite (Festival-Lite) software. Mimic takes in
11           text and reads it out loud to create a high quality voice.
13           https://github.com/MycroftAI/mimic
15 if BR2_PACKAGE_MIMIC
17 choice
18         prompt "audio backend"
19         default BR2_PACKAGE_MIMIC_AUDIO_BACKEND_NONE
21 config BR2_PACKAGE_MIMIC_AUDIO_BACKEND_NONE
22         bool "none"
23         help
24           With no backend, mimic will only be able to produce .wav
25           files.
27 config BR2_PACKAGE_MIMIC_AUDIO_BACKEND_ALSA
28         bool "alsa"
29         depends on BR2_PACKAGE_ALSA_LIB
31 config BR2_PACKAGE_MIMIC_AUDIO_BACKEND_PORTAUDIO
32         bool "alsa via portaudio"
33         depends on BR2_PACKAGE_PORTAUDIO
35 config BR2_PACKAGE_MIMIC_AUDIO_BACKEND_PULSEAUDIO
36         bool "pulseaudio"
37         depends on BR2_PACKAGE_PULSEAUDIO
39 endchoice
41 endif # BR2_PACKAGE_MIMIC