mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 14:28:15 -05:00
gnu: add ekho.
* gnu/packages/speech.scm (ekho): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
6c304e0233
commit
652861139f
1 changed files with 35 additions and 0 deletions
|
@ -7,6 +7,7 @@
|
||||||
;;; Copyright © 2019 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2019 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;; Copyright © 2020 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
;;; Copyright © 2020 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
||||||
;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il>
|
||||||
|
;;; Copyright © 2021 qblade <qblade@protonmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -555,6 +556,40 @@ (define-public festival
|
||||||
control.")
|
control.")
|
||||||
(license (license:non-copyleft "file://COPYING"))))
|
(license (license:non-copyleft "file://COPYING"))))
|
||||||
|
|
||||||
|
(define-public ekho
|
||||||
|
(package
|
||||||
|
(name "ekho")
|
||||||
|
(version "8.4")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri
|
||||||
|
(string-append "mirror://sourceforge/e-guidedog/Ekho/"
|
||||||
|
version "/ekho-" version ".tar.xz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1v476kpw09ljj8mavasj4hya2w11jwlx7q22rh1lsn9jkkam5i2a"))))
|
||||||
|
(native-inputs
|
||||||
|
`(("pkg-config" ,pkg-config)))
|
||||||
|
(inputs
|
||||||
|
`(("alsa-lib" ,alsa-lib)
|
||||||
|
("espeak-ng" ,espeak-ng)
|
||||||
|
("libsndfile" ,libsndfile)
|
||||||
|
("pulseaudio" ,pulseaudio)))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(native-search-paths
|
||||||
|
(list (search-path-specification
|
||||||
|
(variable "EKHO_DATA_PATH")
|
||||||
|
(files '("share/ekho-data")))))
|
||||||
|
(home-page "https://eguidedog.net/ekho.php")
|
||||||
|
(synopsis "Chinese text-to-speech software")
|
||||||
|
(description
|
||||||
|
"Ehko is a Text-To-Speech (TTS) software. It supports Cantonese,
|
||||||
|
Mandarin, Toisanese, Zhaoan Hakka, Tibetan, Ngangien and Korean (in trial).
|
||||||
|
It can also speak English through eSpeak or Festival.")
|
||||||
|
(license (list license:gpl2+
|
||||||
|
;; libmusicxml
|
||||||
|
license:mpl2.0))))
|
||||||
|
|
||||||
(define-public sphinxbase
|
(define-public sphinxbase
|
||||||
(package
|
(package
|
||||||
(name "sphinxbase")
|
(name "sphinxbase")
|
||||||
|
|
Loading…
Reference in a new issue