diff options
Diffstat (limited to 'extra/libpng/PKGBUILD')
-rw-r--r-- | extra/libpng/PKGBUILD | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/extra/libpng/PKGBUILD b/extra/libpng/PKGBUILD index b5473089a..506212bfd 100644 --- a/extra/libpng/PKGBUILD +++ b/extra/libpng/PKGBUILD @@ -1,29 +1,28 @@ -# $Id: PKGBUILD 194432 2013-09-16 10:42:02Z jgc $ +# $Id: PKGBUILD 198221 2013-10-30 13:32:47Z allan $ # Maintainer: Jan de Groot <jgc@archlinux.org> # Contributor: dorphell <dorphell@archlinux.org> # Contributor: Travis Willard <travis@archlinux.org> # Contributor: Douglas Soares de Andrade <douglas@archlinux.org> pkgname=libpng -pkgver=1.6.5 -_apngver=1.6.3 +pkgver=1.6.6 +_apngver=1.6.6 pkgrel=1 pkgdesc="A collection of routines used to create PNG format graphics files" arch=('i686' 'x86_64' 'mips64el') url="http://www.libpng.org/pub/png/libpng.html" license=('custom') depends=('zlib' 'sh') -options=('!libtool') source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.xz{,.asc} http://downloads.sourceforge.net/sourceforge/libpng-apng/libpng-$_apngver-apng.patch.gz) -md5sums=('dec292dd99b094cea03bdd7232f5a80c' +md5sums=('3a41dcd58bcac7cc191c2ec80c7fb2ac' 'SKIP' - '57007fc121baa2cdc48abcfb26300e78') + '8af242769611daf62a8a17349b6059f7') prepare() { cd $pkgname-$pkgver - # Add animated PNG (apng) support + # Add animated PNG (apng) support. Required by Firefox # see http://sourceforge.net/projects/libpng-apng/ patch -Np1 -i ../libpng-$_apngver-apng.patch } @@ -31,7 +30,7 @@ prepare() { build() { cd $pkgname-$pkgver - ./configure --prefix=/usr + ./configure --prefix=/usr --disable-static make } |