gnu: libpng: Upgrade to 1.5.17.

* gnu/packages/libpng.scm (libpng): Upgrade to 1.5.17.
master
Ludovic Courtès 2013-07-10 15:55:39 +02:00
parent edd258fd6b
commit c0edcc3c19
1 changed files with 11 additions and 8 deletions

View File

@ -27,21 +27,24 @@
(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.")