mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: Add liblinphone.
* gnu/packages/linphone.scm (liblinphone): New variable. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
This commit is contained in:
parent
b6b3a6a6c4
commit
9732910dd3
1 changed files with 48 additions and 0 deletions
|
@ -24,6 +24,7 @@ (define-module (gnu packages linphone)
|
|||
#:use-module (gnu packages base)
|
||||
#:use-module (gnu packages compression)
|
||||
#:use-module (gnu packages documentation)
|
||||
#:use-module (gnu packages gettext)
|
||||
#:use-module (gnu packages gl)
|
||||
#:use-module (gnu packages gnome)
|
||||
#:use-module (gnu packages graphviz)
|
||||
|
@ -31,6 +32,7 @@ (define-module (gnu packages linphone)
|
|||
#:use-module (gnu packages linux)
|
||||
#:use-module (gnu packages pulseaudio)
|
||||
#:use-module (gnu packages python)
|
||||
#:use-module (gnu packages python-xyz)
|
||||
#:use-module (gnu packages java)
|
||||
#:use-module (gnu packages sqlite)
|
||||
#:use-module (gnu packages telephony)
|
||||
|
@ -367,3 +369,49 @@ (define-public mediastreamer2
|
|||
including media capture, encoding and decoding, and rendering.")
|
||||
(home-page "https://gitlab.linphone.org/BC/public/mediastreamer2")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public liblinphone
|
||||
(package
|
||||
(name "liblinphone")
|
||||
(version "3.12.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri
|
||||
(string-append "https://www.linphone.org/releases/sources/linphone"
|
||||
"/linphone-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0phhkx55xdyg28d4wn8l8q4yvsmdgzmjiw584d4s190sq1azm91x"))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; No test target
|
||||
#:configure-flags
|
||||
(list
|
||||
"-DENABLE_STATIC=NO"))) ; Not required
|
||||
(native-inputs
|
||||
`(("dot" ,graphviz)
|
||||
("doxygen" ,doxygen)
|
||||
("gettext" ,gettext-minimal)
|
||||
("iconv" ,libiconv)
|
||||
("python" ,python)
|
||||
("xml2" ,libxml2)
|
||||
("zlib" ,zlib)))
|
||||
(inputs
|
||||
`(("bctoolbox" ,bctoolbox)
|
||||
("belcard" ,belcard)
|
||||
("bellesip" ,belle-sip)
|
||||
("bzrtp", bzrtp)
|
||||
("mediastreamer2" ,mediastreamer2)
|
||||
("ortp" ,ortp)
|
||||
("pystache" ,python-pystache)
|
||||
("six" ,python-six)
|
||||
("sqlite" ,sqlite)
|
||||
("udev" ,eudev)))
|
||||
(synopsis "Belledonne Communications Softphone Library")
|
||||
(description "Liblinphone is a high-level SIP library integrating
|
||||
all calling and instant messaging features into an unified
|
||||
easy-to-use API. It is the cross-platform VoIP library on which the
|
||||
Linphone application is based on, and that anyone can use to add audio
|
||||
and video calls or instant messaging capabilities to an application.")
|
||||
(home-page "https://gitlab.linphone.org/BC/public/liblinphone")
|
||||
(license license:gpl2+)))
|
||||
|
|
Loading…
Reference in a new issue