gnu: bcmatroska2: Fetch the sources from git.
* gnu/packages/linphone.scm (bcmatroska2)[source]: Fetch sources from git. [description]: Expound description. [license]: Add the gpl2+ license to the list. Remove broken URLs.
This commit is contained in:
parent
05e0bd07d4
commit
279908ef51
1 changed files with 13 additions and 18 deletions
|
@ -209,31 +209,26 @@ format.")
|
||||||
(version "0.23")
|
(version "0.23")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri
|
(uri (git-reference
|
||||||
(string-append "https://www.linphone.org/releases/sources/" name
|
(url "https://gitlab.linphone.org/BC/public/bcmatroska2.git")
|
||||||
"/" name "-" version ".tar.gz"))
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1a0vlk4fhh189pfzrwbc3xbc5vyx6cnxy642d1h40045jz9y4h15"))))
|
(base32 "1avl9w18kh4dxm3g8j0bkw39bksd7bz3nfxvyibqqnz63ds8vfi2"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; No test target
|
`(#:tests? #f ; No test target
|
||||||
#:configure-flags
|
#:configure-flags (list "-DENABLE_STATIC=NO"))) ; Not required
|
||||||
(list
|
|
||||||
"-DENABLE_STATIC=NO"))) ; Not required
|
|
||||||
(synopsis "Belledonne Communications Media Container")
|
(synopsis "Belledonne Communications Media Container")
|
||||||
(description "BcMatroska is a free and open standard multi-media container
|
(description "BcMatroska is a free and open standard multi-media container
|
||||||
format. It can hold an unlimited number of video, audio, picture, or subtitle
|
format. It can hold an unlimited number of video, audio, picture, or subtitle
|
||||||
tracks in one file. ")
|
tracks in one file. This project provides a convenient distribution of the
|
||||||
|
Matroska multimedia container format.")
|
||||||
(home-page "https://gitlab.linphone.org/BC/public/bcmatroska2")
|
(home-page "https://gitlab.linphone.org/BC/public/bcmatroska2")
|
||||||
(license
|
(license (list license:gpl2+ ;for this package (build system files)
|
||||||
(list
|
license:bsd-4 ;for Core C and LibEBML2
|
||||||
;; For Core C and LibEBML2.
|
license:lgpl2.1+)))) ;for LibMatroska2
|
||||||
;; https://www.matroska.org/node/47
|
|
||||||
license:bsd-4
|
|
||||||
;; For LibMatroska2.
|
|
||||||
;; https://www.matroska.org/node/47
|
|
||||||
license:lgpl2.1+))))
|
|
||||||
|
|
||||||
(define-public bcg729
|
(define-public bcg729
|
||||||
(package
|
(package
|
||||||
|
|
Reference in a new issue