~ruther/guix-local

434dd2cc619f82a9b63f22d36c3933a9e0964966 — Nicolas Goaziou 5 months ago 532b78e
gnu: sphinxbase: Deprecate variable.

Sphinxbase is now included in Pocketsphinx.

Change-Id: If86fb478565fb93a36bf25388d191aa21a25d7b6
1 files changed, 3 insertions(+), 32 deletions(-)

M gnu/packages/speech.scm
M gnu/packages/speech.scm => gnu/packages/speech.scm +3 -32
@@ 651,38 651,6 @@ It can also speak English through eSpeak or Festival.")
                   ;; libmusicxml
                   license:mpl2.0))))

(define-public sphinxbase
  (package
    (name "sphinxbase")
    (version "5prealpha")
    (source
     (origin
       (method url-fetch)
       (uri (string-append "mirror://sourceforge/cmusphinx/"
                           "sphinxbase/" version "/"
                           "sphinxbase-" version ".tar.gz"))
       (sha256
        (base32 "0vr4k8pv5a8nvq9yja7kl13b5lh0f9vha8fc8znqnm8bwmcxnazp"))
       (patches (search-patches "sphinxbase-fix-doxygen.patch"))))
    (build-system gnu-build-system)
    (arguments
     `(#:parallel-tests? #f))           ;tests fail otherwise
    (native-inputs
     (list bison
           doxygen
           perl ;for tests
           python
           swig))
    (inputs
     (list pulseaudio))
    (home-page "https://cmusphinx.github.io/")
    (synopsis "Support library required by Pocketsphinx and Sphinxtrain")
    (description "This package contains the basic libraries shared by
the CMU Sphinx trainer and all the Sphinx decoders (Sphinx-II,
Sphinx-III, and PocketSphinx), as well as some common utilities for
manipulating acoustic feature and audio files.")
    (license license:bsd-4)))

(define-public pocketsphinx
  (package
    (name "pocketsphinx")


@@ 721,3 689,6 @@ manipulating acoustic feature and audio files.")
large vocabulary, speaker-independent continuous speech recognition
engine.")
    (license license:bsd-2)))

(define-deprecated-package sphinxbase
  pocketsphinx)