mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
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:
parent
c4b786fb33
commit
13f769c165
1 changed files with 4 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue