mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
gnu: Add belcard.
* gnu/packages/linphone.scm (belcard): New variable. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
This commit is contained in:
parent
63c73bcad0
commit
c8f69ec27b
1 changed files with 26 additions and 0 deletions
|
@ -105,3 +105,29 @@ (define-public belr
|
||||||
defined by an ABNF grammar, such as the protocols standardized at IETF.")
|
defined by an ABNF grammar, such as the protocols standardized at IETF.")
|
||||||
(home-page "https://gitlab.linphone.org/BC/public/belr")
|
(home-page "https://gitlab.linphone.org/BC/public/belr")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public belcard
|
||||||
|
(package
|
||||||
|
(name "belcard")
|
||||||
|
(version "1.0.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri
|
||||||
|
(string-append "https://www.linphone.org/releases/sources/" name
|
||||||
|
"/" name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "0iiyrll1shnbb0561pkvdqcmx9b2cdr76xpsbaqdirc3s4xzcl0k"))))
|
||||||
|
(build-system cmake-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #f ; No test target
|
||||||
|
#:configure-flags
|
||||||
|
(list
|
||||||
|
"-DENABLE_STATIC=OFF"))) ; Not required
|
||||||
|
(inputs
|
||||||
|
`(("bctoolbox" ,bctoolbox)
|
||||||
|
("belr" ,belr)))
|
||||||
|
(synopsis "Belledonne Communications VCard Library")
|
||||||
|
(description "Belcard is a C++ library to manipulate VCard standard format.")
|
||||||
|
(home-page "https://gitlab.linphone.org/BC/public/belcard")
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
Loading…
Reference in a new issue