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
This commit is contained in:
Maxim Cournoyer 2024-06-08 23:34:45 -04:00 committed by Maxim Cournoyer
parent fb76d9ddda
commit 5abea4845d
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -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")