diff options
author | Ludovic Courtès <ludo@gnu.org> | 2022-06-08 14:46:24 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-06-08 14:46:24 +0200 |
commit | 8c3e9da13a3c92a7db308db8c0d81cb474ad7799 (patch) | |
tree | 88d06952aa5cc3a9c4991d9c43eb7950ff174fe1 /gnu/packages/speech.scm | |
parent | 5439c04ebdb7b6405f5ea2446b375f1d155a8d95 (diff) | |
parent | 0c5299200ffcd16370f047b7ccb187c60f30da34 (diff) |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/speech.scm')
-rw-r--r-- | gnu/packages/speech.scm | 29 |
1 files changed, 14 insertions, 15 deletions
diff --git a/gnu/packages/speech.scm b/gnu/packages/speech.scm index f6ca6099de..042c157e43 100644 --- a/gnu/packages/speech.scm +++ b/gnu/packages/speech.scm @@ -2,7 +2,7 @@ ;;; Copyright © 2016 David Thompson <davet@gnu.org> ;;; Copyright © 2016, 2019, 2020 Marius Bakke <mbakke@fastmail.com> ;;; Copyright © 2017 Leo Famulari <leo@famulari.name> -;;; Copyright © 2018, 2020, 2021 Tobias Geerinckx-Rice <me@tobias.gr> +;;; Copyright © 2018, 2020–2022 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2016 Kei Kebreau <kkebreau@posteo.net> ;;; Copyright © 2019, 2021 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2020 Nicolas Goaziou <mail@nicolasgoaziou.fr> @@ -162,8 +162,8 @@ building tools.") ;; corresponding file to be sure that espeak compiles correctly. (copy-file "portaudio19.h" "portaudio.h") (substitute* "Makefile" - (("/bin/ln") "ln")) - #t))))) + (("/bin/ln") "ln") + (("\\$\\(INSTALL\\).*\\$\\(STATIC_LIB.*") ""))))))) (inputs (list portaudio pulseaudio)) (native-inputs (list unzip)) @@ -179,18 +179,16 @@ based on human speech recordings.") (define-public espeak-ng (package (name "espeak-ng") - (version "1.50") - (home-page "https://github.com/espeak-ng/espeak-ng") - ;; Note: eSpeak NG publishes release tarballs, but the 1.50 tarball is - ;; broken: <https://github.com/espeak-ng/espeak-ng/issues/683>. - ;; Download the raw repository to work around it; remove 'native-inputs' - ;; below when switching back to the release tarball. - (source (origin - (method git-fetch) - (uri (git-reference (url home-page) (commit version))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0jkqhf2h94vbqq7mg7mmm23bq372fa7mdk941my18c3vkldcir1b")))) + (version "1.51") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/espeak-ng/espeak-ng") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xhgdmvpgi464x9ba586c6hvscfkbhry75cv796hl9pz1nawq31b")))) (build-system gnu-build-system) (arguments `(#:configure-flags '("--disable-static") @@ -202,6 +200,7 @@ based on human speech recordings.") (list autoconf automake libtool which)) (inputs (list libcap pcaudiolib)) + (home-page "https://github.com/espeak-ng/espeak-ng") (synopsis "Software speech synthesizer") (description "eSpeak NG is a software speech synthesizer for more than 100 languages. |