summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2024-06-08 23:34:45 -0400
committerMaxim Cournoyer <maxim@guixotic.coop>2025-08-25 16:38:46 +0900
commit5abea4845dc237afa51cd664d095ee0799921775 (patch)
treec18c9d911786763a61ecd711fcb43ce56e1c52e5 /gnu/packages
parentfb76d9ddda7c0ac0e1da54c346d435e2fb283040 (diff)
gnu: belr: Update to 5.3.57.
* gnu/packages/linphone.scm (belr): Update to 5.3.57. [configure-flags]: Replace -DENABLE_STATIC=OFF with -DBUILD_SHARED_LIBS=ON. [phases]{check, move-tester}: Adjust the file name of the tester binary and paths. Change-Id: I9d1870c976f5e6b40a682d32d31ccf47e4806716
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/linphone.scm14
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index 4593e93335a..a8e351f3767 100644
--- a/gnu/packages/linphone.scm
+++ b/gnu/packages/linphone.scm
@@ -187,7 +187,7 @@ Communications software like belle-sip, mediastreamer2 and linphone.")
(define-public belr
(package
(name "belr")
- (version "5.2.49")
+ (version "5.3.57")
(source
(origin
(method git-fetch)
@@ -196,33 +196,33 @@ Communications software like belle-sip, mediastreamer2 and linphone.")
(commit version)))
(file-name (git-file-name name version))
(sha256
- (base32 "1bj8qd4ahbff476z0ccwsxy7qznqi6n5l1pdd7zbvk0h53zyj74c"))))
+ (base32 "1jqv2rfclzwsglwgvx7ypy0yhwbjxrsbik6xipf48770qmdz3bj9"))))
(build-system cmake-build-system)
(outputs '("out" "debug" "tester"))
(arguments
(list
- #:configure-flags '(list "-DENABLE_STATIC=OFF")
+ #:configure-flags '(list "-DBUILD_SHARED_LIBS=ON")
#:phases
#~(modify-phases %standard-phases
(delete 'check) ;moved after the install phase
(add-after 'install 'check
(lambda* (#:key tests? outputs #:allow-other-keys)
(when tests?
- (invoke (string-append #$output:tester "/bin/belr_tester")))))
+ (invoke (string-append #$output:tester "/bin/belr-tester")))))
(add-after 'install 'move-tester
(lambda _
(for-each mkdir-p
(list (string-append #$output:tester "/bin")
(string-append #$output:tester "/share")))
(rename-file
- (string-append #$output "/bin/belr_tester")
- (string-append #$output:tester "/bin/belr_tester"))
+ (string-append #$output "/bin/belr-tester")
+ (string-append #$output:tester "/bin/belr-tester"))
(rename-file
(string-append #$output "/share/belr-tester/res")
;; The detect_res_prefix procedure in bctoolbox's tester.c
;; resolves the resource path based on the executable path and
;; name, so have it match.
- (string-append #$output:tester "/share/belr_tester")))))))
+ (string-append #$output:tester "/share/belr-tester")))))))
(inputs
(list bctoolbox))
(synopsis "Belledonne Communications Language Recognition Library")