summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorPatrick Norton <patrick.147.norton@gmail.com>2026-01-07 16:21:28 -0500
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-02-27 23:02:43 +0000
commit295a09f7c01819ebf7c30d0e35741071b313a763 (patch)
tree7c3ef40103f24dd2a9d5500a901fac01635b0bc3 /gnu
parent57e10b6161bfeb636bb497726cc70073f3678d86 (diff)
gnu: Update praat to 6.4.52.
* gnu/packages/language.scm (praat): Update to 6.4.52. [arguments]: Update makefile names. Merges: https://codeberg.org/guix/guix/pulls/5455 Change-Id: Ib0de32f46e31536f720d91bcf0624d51b3c88518 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/language.scm12
1 files changed, 8 insertions, 4 deletions
diff --git a/gnu/packages/language.scm b/gnu/packages/language.scm
index 930b43e70b2..786cbdf2ee1 100644
--- a/gnu/packages/language.scm
+++ b/gnu/packages/language.scm
@@ -86,6 +86,7 @@
#:use-module (guix download)
#:use-module (guix gexp)
#:use-module (guix git-download)
+ #:use-module (guix modules)
#:use-module (guix utils))
(define-public nimf
@@ -873,7 +874,7 @@ noun phrases, verb phrases, etc.).")
(define-public praat
(package
(name "praat")
- (version "6.4.49")
+ (version "6.4.52")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -882,7 +883,7 @@ noun phrases, verb phrases, etc.).")
(file-name (git-file-name name version))
(sha256
(base32
- "1h49ffxjrc3pxamm0b77n6jirl5pp9xm09fvb16mx1qwr0cnzi2q"))))
+ "16ab95m7spq1lhkwpdn9s3bxxcnjh6mzznlalh22ag8n414wdj23"))))
(build-system gnu-build-system)
(arguments
(list #:make-flags #~(list (string-append "CC="
@@ -895,8 +896,11 @@ noun phrases, verb phrases, etc.).")
""))))
(replace 'configure
(lambda _
- (copy-file "makefiles/makefile.defs.linux.pulse-gcc"
- "makefile.defs")))
+ (copy-file
+ #$(if (target-little-endian?)
+ "makefiles/makefile.defs.linux.pulse-gcc.LE"
+ "makefiles/makefile.defs.linux.pulse-gcc.BE")
+ "makefile.defs")))
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(when tests?