gnu: speech-dispatcher: Update to 0.11.5.
* gnu/packages/speech.scm (speech-dispatcher): Update to 0.11.5. [source]: Switch to git-fetch. [native-inputs]: Add autoconf, automake, libtool. [inputs]: Add python-xdg. Reviewed-by: Dale Mellor <guix-devel-0brg6b@rdmp.org> Change-Id: If323f17bac54da427be1a09d847de50842717a01 Signed-off-by: Ludovic Courtès <ludo@gnu.org>master
parent
f4dcf3018e
commit
cba4c9f161
|
@ -8,6 +8,7 @@
|
||||||
;;; 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>
|
;;; Copyright © 2021 qblade <qblade@protonmail.com>
|
||||||
|
;;; Copyright © 2024 Sébastien Lerique <sl@eauchat.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -51,6 +52,7 @@
|
||||||
#:use-module (gnu packages pkg-config)
|
#:use-module (gnu packages pkg-config)
|
||||||
#:use-module (gnu packages pulseaudio)
|
#:use-module (gnu packages pulseaudio)
|
||||||
#:use-module (gnu packages python)
|
#:use-module (gnu packages python)
|
||||||
|
#:use-module (gnu packages python-xyz)
|
||||||
#:use-module (gnu packages swig)
|
#:use-module (gnu packages swig)
|
||||||
#:use-module (gnu packages texinfo)
|
#:use-module (gnu packages texinfo)
|
||||||
#:use-module (gnu packages textutils))
|
#:use-module (gnu packages textutils))
|
||||||
|
@ -236,15 +238,16 @@ efficiency through the use of a compact vector representation of n-grams.")
|
||||||
(define-public speech-dispatcher
|
(define-public speech-dispatcher
|
||||||
(package
|
(package
|
||||||
(name "speech-dispatcher")
|
(name "speech-dispatcher")
|
||||||
(version "0.11.4")
|
(version "0.11.5")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/brailcom/speechd/releases"
|
(uri (git-reference
|
||||||
"/download/" version "/speech-dispatcher-"
|
(url "https://github.com/brailcom/speechd")
|
||||||
version ".tar.gz"))
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1fb6ypnr8r3905b68bbplg1qcaw3f6br2yzxkk4bb79dnwdj42cc"))))
|
"0z2rb1yi06v145sr2h69rxbxzrsfrk198cw6bgpf8wj2njfh3555"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags '("--disable-static"
|
`(#:configure-flags '("--disable-static"
|
||||||
|
@ -253,7 +256,12 @@ efficiency through the use of a compact vector representation of n-grams.")
|
||||||
"--with-voxin=no" "--with-ibmtts=no"
|
"--with-voxin=no" "--with-ibmtts=no"
|
||||||
"--with-kali=no" "--with-baratinoo=no")))
|
"--with-kali=no" "--with-baratinoo=no")))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list gettext-minimal pkg-config texinfo))
|
(list autoconf
|
||||||
|
automake
|
||||||
|
gettext-minimal
|
||||||
|
libtool
|
||||||
|
pkg-config
|
||||||
|
texinfo))
|
||||||
(inputs
|
(inputs
|
||||||
(list dotconf
|
(list dotconf
|
||||||
espeak-ng
|
espeak-ng
|
||||||
|
@ -261,7 +269,8 @@ efficiency through the use of a compact vector representation of n-grams.")
|
||||||
libltdl
|
libltdl
|
||||||
libsndfile
|
libsndfile
|
||||||
pulseaudio
|
pulseaudio
|
||||||
python))
|
python
|
||||||
|
python-xdg))
|
||||||
(synopsis "Common interface to speech synthesizers")
|
(synopsis "Common interface to speech synthesizers")
|
||||||
(description "The Speech Dispatcher project provides a high-level
|
(description "The Speech Dispatcher project provides a high-level
|
||||||
device independent layer for access to speech synthesis through a simple,
|
device independent layer for access to speech synthesis through a simple,
|
||||||
|
|
Reference in New Issue