mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 14:40:21 -05:00
gnu: Add openjpeg-data.
* gnu/packages/image.scm (openjpeg-data): New variable. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
This commit is contained in:
parent
08d048a06b
commit
3f03bd3728
1 changed files with 22 additions and 0 deletions
|
@ -781,6 +781,28 @@ (define-public jbigkit
|
|||
(license (list license:isc ; pbmtools/p?m.5
|
||||
license:gpl2+)))) ; the rest
|
||||
|
||||
(define-public openjpeg-data
|
||||
(package
|
||||
(name "openjpeg-data")
|
||||
(version "2020.05.19")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri
|
||||
(git-reference
|
||||
(url "https://github.com/uclouvain/openjpeg-data.git")
|
||||
(commit "c5c4a8c")))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1jp84gbhw8q5b8mhc322ql9410hjf32w9hg10x4isfa9j59mnncb"))))
|
||||
(build-system copy-build-system)
|
||||
(synopsis "Test files for OpenJPEG")
|
||||
(description "OpenJPEG-Data contains all files required to run the openjpeg
|
||||
test suite, including conformance tests (following Rec. ITU-T T.803 | ISO/IEC
|
||||
15444-4 procedures), non-regression tests and unit tests.")
|
||||
(home-page "https://github.com/uclouvain/openjpeg-data")
|
||||
(license license:bsd-2)))
|
||||
|
||||
(define-public openjpeg
|
||||
(package
|
||||
(name "openjpeg")
|
||||
|
|
Loading…
Reference in a new issue