gnu: kaldi: Remove trailing #T from build phases.
* gnu/packages/machine-learning.scm (kaldi)[arguments]: Remove trailing #T from build phases.
This commit is contained in:
parent
c978ae3c6b
commit
f764947dab
1 changed files with 3 additions and 5 deletions
|
|
@ -1625,7 +1625,7 @@ discrete, and conditional dimensions.")
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'chdir
|
(add-after 'unpack 'chdir
|
||||||
(lambda _ (chdir "src") #t))
|
(lambda _ (chdir "src")))
|
||||||
(replace 'configure
|
(replace 'configure
|
||||||
(lambda* (#:key build system inputs outputs #:allow-other-keys)
|
(lambda* (#:key build system inputs outputs #:allow-other-keys)
|
||||||
(when (not (or (string-prefix? "x86_64" system)
|
(when (not (or (string-prefix? "x86_64" system)
|
||||||
|
|
@ -1671,8 +1671,7 @@ discrete, and conditional dimensions.")
|
||||||
(invoke "make" "-C" "onlinebin" "depend")
|
(invoke "make" "-C" "onlinebin" "depend")
|
||||||
(invoke "make" "-C" "onlinebin")
|
(invoke "make" "-C" "onlinebin")
|
||||||
(invoke "make" "-C" "gst-plugin" "depend")
|
(invoke "make" "-C" "gst-plugin" "depend")
|
||||||
(invoke "make" "-C" "gst-plugin")
|
(invoke "make" "-C" "gst-plugin")))
|
||||||
#t))
|
|
||||||
;; TODO: also install the executables.
|
;; TODO: also install the executables.
|
||||||
(replace 'install
|
(replace 'install
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
|
@ -1693,8 +1692,7 @@ discrete, and conditional dimensions.")
|
||||||
(install-file file target-dir)))
|
(install-file file target-dir)))
|
||||||
(find-files "." "\\.h"))
|
(find-files "." "\\.h"))
|
||||||
(install-file "gst-plugin/libgstonlinegmmdecodefaster.so"
|
(install-file "gst-plugin/libgstonlinegmmdecodefaster.so"
|
||||||
(string-append lib "/gstreamer-1.0"))
|
(string-append lib "/gstreamer-1.0"))))))))
|
||||||
#t))))))
|
|
||||||
(inputs
|
(inputs
|
||||||
(list alsa-lib
|
(list alsa-lib
|
||||||
`(,gfortran "lib")
|
`(,gfortran "lib")
|
||||||
|
|
|
||||||
Reference in a new issue