guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 532b78eb51303e6054c964e64373d131d745eb9e
Author: Nicolas Goaziou <[email protected]>
AuthorDate: Wed Oct 29 15:54:28 2025 +0100

    gnu: pocketsphinx: Update to 5.0.4.
    
    * gnu/packages/speech.scm (pocketsphinx): Update to 5.0.4.
    [source]: Use GitHub as upstream.
    [build-system]: Switch to cmake-build-system.
    [arguments]: Skip tests, build shared libraries and gstreamer plugin.
    [inputs]: Add alsa-lib, ffmpeg, portaudio, sox. Remove sphixbase.
    
    Change-Id: Ic48d140d662b727f944f14be7424449849fca53e
---
 gnu/packages/speech.scm | 38 +++++++++++++++++++++++++++-----------
 1 file changed, 27 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/speech.scm b/gnu/packages/speech.scm
index 23da2455da..a4cbb9aa39 100644
--- a/gnu/packages/speech.scm
+++ b/gnu/packages/speech.scm
@@ -29,6 +29,7 @@
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (guix packages)
   #:use-module (guix download)
+  #:use-module (guix gexp)
   #:use-module (guix git-download)
   #:use-module (guix utils)
   #:use-module (guix build-system cmake)
@@ -56,7 +57,8 @@
   #:use-module (gnu packages python-xyz)
   #:use-module (gnu packages swig)
   #:use-module (gnu packages texinfo)
-  #:use-module (gnu packages textutils))
+  #:use-module (gnu packages textutils)
+  #:use-module (gnu packages video))
 
 (define-public flite
   (package
@@ -684,21 +686,35 @@ manipulating acoustic feature and audio files.")
 (define-public pocketsphinx
   (package
     (name "pocketsphinx")
-    (version "5prealpha")
+    (version "5.0.4")
     (source
      (origin
-       (method url-fetch)
-       (uri (string-append "mirror://sourceforge/cmusphinx/"
-                           "pocketsphinx/" version "/"
-                           "pocketsphinx-" version ".tar.gz"))
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/cmusphinx/pocketsphinx";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
        (sha256
-        (base32 "1n9yazzdgvpqgnfzsbl96ch9cirayh74jmpjf7svs4i7grabanzg"))))
-    (build-system gnu-build-system)
+        (base32
+         "16andx54333rdyf6c33s8pfns2wvqfapqp9dhh8fpgzdyg6bfhhd"))))
+    (build-system cmake-build-system)
+    (arguments
+     (list #:tests? #false              ;XXX: test binaries are missing
+           #:configure-flags #~(list "-DBUILD_SHARED_LIBS=ON"
+                                     "-DBUILD_GSTREAMER=ON")))
     (native-inputs
-     (list pkg-config perl ;for tests
-           python swig))
+     (list pkg-config
+           perl                         ;for tests
+           python
+           swig))
     (inputs
-     (list gstreamer libcap pulseaudio sphinxbase))
+     (list alsa-lib
+           ffmpeg
+           gstreamer
+           libcap
+           pulseaudio
+           portaudio
+           sox))
     (home-page "https://cmusphinx.github.io/";)
     (synopsis "Recognizer library written in C")
     (description "PocketSphinx is one of Carnegie Mellon University's

Reply via email to