guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/27: gnu: Add openjpeg-data.


From: guix-commits
Subject: 03/27: gnu: Add openjpeg-data.
Date: Tue, 18 Aug 2020 17:11:33 -0400 (EDT)

dannym pushed a commit to branch master
in repository guix.

commit 3f03bd372871a95e2ebb50197172f7a95329feed
Author: Raghav Gururajan <raghavgururajan@disroot.org>
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 <dannym@scratchpost.org>
---
 gnu/packages/image.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm
index 2f35497..6604ac5 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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]