gnu: festival: Support ALSA output.

* gnu/packages/speech.scm (festival)[arguments]:
Add "LINUXAUDIO=alsa" to #:make-flags.
[inputs]: Add alsa-lib.
This commit is contained in:
Tobias Geerinckx-Rice 2021-12-06 14:25:08 +01:00
parent c4b786fb33
commit 13f769c165
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -342,7 +342,8 @@ (define-public festival
"/bin/rm")
(string-append "ECHO_N="
(assoc-ref %build-inputs "coreutils")
"/bin/printf \"%s\""))
"/bin/printf \"%s\"")
"LINUXAUDIO=alsa")
#:parallel-build? #f ; not supported
#:modules ((guix build gnu-build-system)
(guix build utils)
@ -505,7 +506,8 @@ (define-public festival
(add-before 'configure 'bootstrap
(lambda _ (invoke "autoreconf" "-vif"))))))
(inputs
(list ncurses))
(list alsa-lib
ncurses))
(native-inputs
`(("autoconf" ,autoconf)
("automake" ,automake)