[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/10: gnu: Add charls.
From: |
guix-commits |
Subject: |
07/10: gnu: Add charls. |
Date: |
Thu, 5 Jan 2023 17:22:46 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit 1fa87755057347f8893ec137cc5a7550a23f241f
Author: Tor-björn Claesson <tclaesson@gmail.com>
AuthorDate: Wed Dec 28 02:23:53 2022 +0200
gnu: Add charls.
* gnu/packages/image-processing.scm (charls): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/image-processing.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/image-processing.scm
b/gnu/packages/image-processing.scm
index 85acc3f5b5..70c820e76b 100644
--- a/gnu/packages/image-processing.scm
+++ b/gnu/packages/image-processing.scm
@@ -1748,3 +1748,31 @@ segmentation.")
"Image and video labeling tool supporting different shapes like
polygons, rectangles, circles, lines, points and VOC/COCO export.")
(license license:gpl3+)))
+
+(define-public charls
+ (package
+ (name "charls")
+ (version "2.3.4")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/team-charls/charls/")
+ (commit (string-append version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0g3f1rfimk30rqmi7ic4i5vfphyqbbpsyyhwqq1iss9wjwaz2vs5"))))
+ (build-system cmake-build-system)
+ (arguments
+ `(#:configure-flags '("-DCMAKE_BUILD_TYPE:STRING=Release"
+ "-DBUILD_SHARED_LIBS=On")))
+ (native-inputs (list git pkg-config))
+ (home-page "https://github.com/team-charls/charls")
+ (synopsis "Library for using JPEG-LS compliant images")
+ (description
+ "CharLS is a codec library that can be used to build applications that
+can handle JPEG-LS compliant images. In the application you are writing you
+can call the CharLS codec and pass it images (sometimes called raster bitmaps),
+ to have them encoded to JPEG-LS, or JPEG-LS streams, which CharLS will decode
+to images.")
+ (license license:bsd-3)))
- branch master updated (80902fc210 -> 6f8a03fad3), guix-commits, 2023/01/05
- 07/10: gnu: Add charls.,
guix-commits <=
- 01/10: home: shells: Do not escape backslashes in single-quoted strings., guix-commits, 2023/01/05
- 05/10: doc: Introduce using swap space for hibernation, with examples., guix-commits, 2023/01/05
- 02/10: gnu: Add emacs-ibrowse., guix-commits, 2023/01/05
- 08/10: gnu: kicad: Update to 6.0.10., guix-commits, 2023/01/05
- 10/10: gnu: zfs: Update to 2.1.7., guix-commits, 2023/01/05
- 03/10: gnu: Add zls., guix-commits, 2023/01/05
- 06/10: gnu: gpodder: Update to 3.11.0., guix-commits, 2023/01/05
- 04/10: gnu: Add yaru-theme, guix-commits, 2023/01/05
- 09/10: gnu: flightgear: Update to 2020.3.17., guix-commits, 2023/01/05