mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 19:19:20 -05:00
gnu: openjpeg: Make some cosmetic changes.
* gnu/packages/images.scm (openjpeg): Make some cosmetic changes. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
This commit is contained in:
parent
acc64de45b
commit
b96961c9d2
1 changed files with 18 additions and 16 deletions
|
@ -810,31 +810,33 @@ (define-public openjpeg
|
||||||
(package
|
(package
|
||||||
(name "openjpeg")
|
(name "openjpeg")
|
||||||
(version "2.3.1")
|
(version "2.3.1")
|
||||||
(source (origin
|
(source
|
||||||
(method git-fetch)
|
(origin
|
||||||
(uri (git-reference
|
(method git-fetch)
|
||||||
(url "https://github.com/uclouvain/openjpeg")
|
(uri
|
||||||
(commit (string-append "v" version))))
|
(git-reference
|
||||||
(file-name (git-file-name "openjpeg" version))
|
(url "https://github.com/uclouvain/openjpeg")
|
||||||
(sha256
|
(commit
|
||||||
(base32
|
(string-append "v" version))))
|
||||||
"1dn98d2dfa1lqyxxmab6rrcv52dyhjr4g7i4xf2w54fqsx14ynrb"))))
|
(file-name
|
||||||
|
(git-file-name "openjpeg" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1dn98d2dfa1lqyxxmab6rrcv52dyhjr4g7i4xf2w54fqsx14ynrb"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:tests? #f ;TODO: requires a 1.1 GiB data repository
|
'(#:tests? #f ;TODO: requires a 1.1 GiB data repository
|
||||||
#:configure-flags '("-DBUILD_STATIC_LIBS=OFF")))
|
#:configure-flags '("-DBUILD_STATIC_LIBS=OFF")))
|
||||||
(inputs
|
(inputs
|
||||||
`(("lcms" ,lcms)
|
`(("lcms" ,lcms)
|
||||||
("libpng" ,libpng)
|
("libpng" ,libpng)
|
||||||
("libtiff" ,libtiff)
|
("libtiff" ,libtiff)
|
||||||
("zlib" ,zlib)))
|
("zlib" ,zlib)))
|
||||||
(synopsis "JPEG 2000 codec")
|
(synopsis "JPEG 2000 codec")
|
||||||
(description
|
(description
|
||||||
"The OpenJPEG library is a JPEG 2000 codec written in C. It has
|
"The OpenJPEG library is a JPEG 2000 codec written in C. It has
|
||||||
been developed in order to promote the use of JPEG 2000, the new
|
been developed in order to promote the use of JPEG 2000, the new
|
||||||
still-image compression standard from the Joint Photographic Experts
|
still-image compression standard from the Joint Photographic Experts
|
||||||
Group (JPEG).
|
Group (JPEG).
|
||||||
|
|
||||||
In addition to the basic codec, various other features are under
|
In addition to the basic codec, various other features are under
|
||||||
development, among them the JP2 and MJ2 (Motion JPEG 2000) file formats,
|
development, among them the JP2 and MJ2 (Motion JPEG 2000) file formats,
|
||||||
an indexing tool useful for the JPIP protocol, JPWL-tools for
|
an indexing tool useful for the JPIP protocol, JPWL-tools for
|
||||||
|
|
Loading…
Reference in a new issue