gnu: festival: Support ALSA output.
* gnu/packages/speech.scm (festival)[arguments]: Add "LINUXAUDIO=alsa" to #:make-flags. [inputs]: Add alsa-lib.master
parent
c4b786fb33
commit
13f769c165
|
@ -342,7 +342,8 @@ be used by the sighted.")
|
||||||
"/bin/rm")
|
"/bin/rm")
|
||||||
(string-append "ECHO_N="
|
(string-append "ECHO_N="
|
||||||
(assoc-ref %build-inputs "coreutils")
|
(assoc-ref %build-inputs "coreutils")
|
||||||
"/bin/printf \"%s\""))
|
"/bin/printf \"%s\"")
|
||||||
|
"LINUXAUDIO=alsa")
|
||||||
#:parallel-build? #f ; not supported
|
#:parallel-build? #f ; not supported
|
||||||
#:modules ((guix build gnu-build-system)
|
#:modules ((guix build gnu-build-system)
|
||||||
(guix build utils)
|
(guix build utils)
|
||||||
|
@ -505,7 +506,8 @@ be used by the sighted.")
|
||||||
(add-before 'configure 'bootstrap
|
(add-before 'configure 'bootstrap
|
||||||
(lambda _ (invoke "autoreconf" "-vif"))))))
|
(lambda _ (invoke "autoreconf" "-vif"))))))
|
||||||
(inputs
|
(inputs
|
||||||
(list ncurses))
|
(list alsa-lib
|
||||||
|
ncurses))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("autoconf" ,autoconf)
|
`(("autoconf" ,autoconf)
|
||||||
("automake" ,automake)
|
("automake" ,automake)
|
||||||
|
|
Reference in New Issue