gnu: lime: Update to 5.2.49.

* gnu/packages/linphone.scm (lime): Update to 5.2.49.
[arguments]: Enable building of documentation; disable server and multidomains
tests as they require networking.
This commit is contained in:
Ricardo Wurmus 2023-04-08 13:35:07 +02:00
parent 45620ae8b0
commit d5e3242036
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC

View File

@ -687,7 +687,7 @@ including media capture, encoding and decoding, and rendering.")
(define-public lime (define-public lime
(package (package
(name "lime") (name "lime")
(version "4.4.34") (version "5.2.49")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
@ -696,12 +696,13 @@ including media capture, encoding and decoding, and rendering.")
(commit version))) (commit version)))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 "14jg1zisjbzflw3scfqdbwy48wq3cp93l867vigb8l40lkc6n26z")))) (base32 "1mglnypxl3glwvwf2h5q4ikbm6wbcd9pb7kdws8zajjhk9q803jr"))))
(build-system cmake-build-system) (build-system cmake-build-system)
(outputs '("out" "doc")) (outputs '("out" "doc"))
(arguments (arguments
`(#:configure-flags (list "-DENABLE_STATIC=NO" `(#:configure-flags (list "-DENABLE_STATIC=NO"
"-DENABLE_C_INTERFACE=YES") "-DENABLE_C_INTERFACE=YES"
"-DENABLE_DOC=YES")
#:phases #:phases
(modify-phases %standard-phases (modify-phases %standard-phases
(add-after 'unpack 'patch-source (add-after 'unpack 'patch-source
@ -710,7 +711,9 @@ including media capture, encoding and decoding, and rendering.")
(substitute* "tester/CMakeLists.txt" (substitute* "tester/CMakeLists.txt"
(("add_test\\(?.*\"Hello World\"\\)") "") (("add_test\\(?.*\"Hello World\"\\)") "")
(("add_test\\(?.*\"lime\"\\)") "") (("add_test\\(?.*\"lime\"\\)") "")
(("add_test\\(?.*\"FFI\"\\)") "")))) (("add_test\\(?.*\"FFI\"\\)") "")
(("add_test\\(?.*\"Multidomains\"\\)") "")
(("add_test\\(?.*\"Lime server\"\\)") ""))))
(add-after 'build 'build-doc (add-after 'build 'build-doc
(lambda _ (lambda _
(invoke "make" "doc"))) (invoke "make" "doc")))