gnu: festival: Fix scripts.
* gnu/packages/speech.scm (festival)[arguments]: Fix broken shebangs in scripts.
This commit is contained in:
parent
dfcf79ac59
commit
a870b80046
|
@ -350,8 +350,8 @@ be used by the sighted.")
|
|||
(install-file executable bin))
|
||||
'("src/main/festival"
|
||||
"src/main/festival_client"
|
||||
"examples/benchmark"
|
||||
"examples/dumpfeats"
|
||||
"examples/benchmark"))
|
||||
(let ((scripts '("examples/dumpfeats"
|
||||
"examples/durmeanstd"
|
||||
"examples/latest"
|
||||
"examples/make_utts"
|
||||
|
@ -360,7 +360,13 @@ be used by the sighted.")
|
|||
"examples/saytime"
|
||||
"examples/scfg_parse_text"
|
||||
"examples/text2pos"
|
||||
"examples/text2wave"))
|
||||
"examples/text2wave")))
|
||||
(substitute* scripts
|
||||
(("exec /tmp/guix-build.*/bin/festival")
|
||||
(string-append "exec " bin "/festival")))
|
||||
(for-each (lambda (script)
|
||||
(install-file script bin))
|
||||
scripts))
|
||||
|
||||
;; Documentation
|
||||
(for-each (lambda (file)
|
||||
|
|
Loading…
Reference in New Issue