diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-04-08 13:35:07 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-04-08 20:05:05 +0200 |
commit | d5e32420365204e3037aeb023e60602d9ad79454 (patch) | |
tree | e898d002a7ca3d0aaf4ce175ff97410095c709a2 /gnu | |
parent | 45620ae8b0a49e64a34f23ae73ef6445a7914712 (diff) | |
download | guix-d5e32420365204e3037aeb023e60602d9ad79454.tar guix-d5e32420365204e3037aeb023e60602d9ad79454.tar.gz |
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.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/linphone.scm | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm index 896e0b6dfc..135ec70541 100644 --- a/gnu/packages/linphone.scm +++ b/gnu/packages/linphone.scm @@ -687,7 +687,7 @@ including media capture, encoding and decoding, and rendering.") (define-public lime (package (name "lime") - (version "4.4.34") + (version "5.2.49") (source (origin (method git-fetch) @@ -696,12 +696,13 @@ including media capture, encoding and decoding, and rendering.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "14jg1zisjbzflw3scfqdbwy48wq3cp93l867vigb8l40lkc6n26z")))) + (base32 "1mglnypxl3glwvwf2h5q4ikbm6wbcd9pb7kdws8zajjhk9q803jr")))) (build-system cmake-build-system) (outputs '("out" "doc")) (arguments `(#:configure-flags (list "-DENABLE_STATIC=NO" - "-DENABLE_C_INTERFACE=YES") + "-DENABLE_C_INTERFACE=YES" + "-DENABLE_DOC=YES") #:phases (modify-phases %standard-phases (add-after 'unpack 'patch-source @@ -710,7 +711,9 @@ including media capture, encoding and decoding, and rendering.") (substitute* "tester/CMakeLists.txt" (("add_test\\(?.*\"Hello World\"\\)") "") (("add_test\\(?.*\"lime\"\\)") "") - (("add_test\\(?.*\"FFI\"\\)") "")))) + (("add_test\\(?.*\"FFI\"\\)") "") + (("add_test\\(?.*\"Multidomains\"\\)") "") + (("add_test\\(?.*\"Lime server\"\\)") "")))) (add-after 'build 'build-doc (lambda _ (invoke "make" "doc"))) |