dannym pushed a commit to branch wip-desktop
in repository guix.
commit 98cc88ac01555231a0c4f2f4c57d9efbaed17e4e
Author: Raghav Gururajan <[email protected]>
AuthorDate: Fri Jul 10 15:57:04 2020 -0400
gnu: Add openjpeg-data.
* gnu/packages/image.scm (openjpeg-data): New variable.
Signed-off-by: Danny Milosavljevic <[email protected]>
---
gnu/packages/image.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm
index e701e0f..c6d5bb5 100644
--- a/gnu/packages/image.scm
+++ b/gnu/packages/image.scm
@@ -781,6 +781,28 @@ images of initially unknown height.")
(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")