Skip to content
Snippets Groups Projects
Commit b9ecd5ae authored by Sou Bunnbu (宋文武)'s avatar Sou Bunnbu (宋文武)
Browse files

gnu: Add libmng.

* gnu/packages/image.scm (libmng): New variable.
parent a33b8449
No related branches found
No related tags found
No related merge requests found
...@@ -563,3 +563,26 @@ (define-public libwebp ...@@ -563,3 +563,26 @@ (define-public libwebp
to PNG when lossy compression is acceptable for the red/green/blue color to PNG when lossy compression is acceptable for the red/green/blue color
channels.") channels.")
(license license:bsd-3))) (license license:bsd-3)))
(define-public libmng
(package
(name "libmng")
(version "2.0.3")
(source (origin
(method url-fetch)
(uri (string-append "mirror://sourceforge/libmng/"
name "-" version ".tar.xz"))
(sha256
(base32
"1lvxnpds0vcf0lil6ia2036ghqlbl740c4d2sz0q5g6l93fjyija"))))
(build-system gnu-build-system)
(propagated-inputs
;; These are all in the 'Libs.private' field of libmng.pc.
`(("lcms" ,lcms)
("libjpeg" ,libjpeg)
("zlib" ,zlib)))
(home-page "http://www.libmng.com/")
(synopsis "Library for handling MNG files")
(description
"Libmng is the MNG (Multiple-image Network Graphics) reference library.")
(license license:bsd-3)))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment