Skip to content
Snippets Groups Projects
Commit c0edcc3c authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

gnu: libpng: Upgrade to 1.5.17.

* gnu/packages/libpng.scm (libpng): Upgrade to 1.5.17.
parent edd258fd
No related branches found
No related tags found
No related merge requests found
...@@ -27,21 +27,24 @@ (define-module (gnu packages libpng) ...@@ -27,21 +27,24 @@ (define-module (gnu packages libpng)
(define-public libpng (define-public libpng
(package (package
(name "libpng") (name "libpng")
(version "1.5.14") (version "1.5.17")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append
"http://downloads.sourceforge.net/project/libpng/libpng15/" ;; Note: upstream removes older tarballs.
version "/libpng-" (uri (list (string-append "mirror://sourceforge/libpng/libpng15/"
version ".tar.xz")) version "/libpng-" version ".tar.xz")
(sha256 (base32 (string-append
"0m3vz3gig7s63zanq5b1dgb5ph12qm0cylw4g4fbxlsq3f74hn8l")))) "ftp://ftp.simplesystems.org/pub/libpng/png/src"
"/libpng15/libpng-" version ".tar.xz")))
(sha256
(base32 "19wj293r4plbfgb43yhrc2qx8bsch9gbazazfqrj9haa7lsk29jp"))))
(build-system gnu-build-system) (build-system gnu-build-system)
;; libpng.la says "-lz", so propagate it. ;; libpng.la says "-lz", so propagate it.
(propagated-inputs `(("zlib" ,zlib))) (propagated-inputs `(("zlib" ,zlib)))
(synopsis "Libpng, a library for handling PNG files") (synopsis "Library for handling PNG files")
(description (description
"Libpng is the official PNG (Portable Network Graphics) reference "Libpng is the official PNG (Portable Network Graphics) reference
library. It supports almost all PNG features and is extensible.") library. It supports almost all PNG features and is extensible.")
......
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