mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add belr.
* gnu/packages/linphone.scm (belr): New variable. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
This commit is contained in:
parent
bfaabfebac
commit
63c73bcad0
1 changed files with 27 additions and 0 deletions
|
@ -78,3 +78,30 @@ (define-public bctoolbox
|
|||
Communications softwares like belle-sip, mediastreamer2 and linphone.")
|
||||
(home-page "https://gitlab.linphone.org/BC/public/bctoolbox")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public belr
|
||||
(package
|
||||
(name "belr")
|
||||
(version "0.1.3")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri
|
||||
(string-append "https://www.linphone.org/releases/sources/" name
|
||||
"/" name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1fwv2cg3qy9vdc7dimcda7nqcqc1h2cdd7ikhk7ng7q4ys8m96c1"))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; No test target
|
||||
#:configure-flags
|
||||
(list
|
||||
"-DENABLE_STATIC=OFF"))) ; Not required
|
||||
(inputs
|
||||
`(("bctoolbox" ,bctoolbox)))
|
||||
(synopsis "Belledonne Communications Language Recognition Library")
|
||||
(description "Belr is Belledonne Communications' language recognition library,
|
||||
written in C++11. It parses text inputs formatted according to a language
|
||||
defined by an ABNF grammar, such as the protocols standardized at IETF.")
|
||||
(home-page "https://gitlab.linphone.org/BC/public/belr")
|
||||
(license license:gpl3+)))
|
||||
|
|
Loading…
Reference in a new issue