extra/libpng: 1.6.6 & disable-static

This commit is contained in:
WarheadsSE 2013-10-21 13:37:09 -04:00
parent d8007b6938
commit 4aba9609a4

View file

@ -8,8 +8,8 @@
# - added --enable-arm-neon=no to configure
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')
@ -19,14 +19,14 @@ 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
}
@ -34,7 +34,7 @@ prepare() {
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr --enable-arm-neon=no
./configure --prefix=/usr --enable-arm-neon=no --disable-static
make
}