2013-09-16 14:23:54 +00:00
|
|
|
# $Id$
|
|
|
|
# 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>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - added --enable-arm-neon=no to configure
|
|
|
|
|
|
|
|
pkgname=libpng
|
2013-10-21 17:37:09 +00:00
|
|
|
pkgver=1.6.6
|
|
|
|
_apngver=1.6.6
|
2013-09-16 14:23:54 +00:00
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="A collection of routines used to create PNG format graphics files"
|
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
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)
|
2013-10-21 17:37:09 +00:00
|
|
|
md5sums=('3a41dcd58bcac7cc191c2ec80c7fb2ac'
|
2013-09-16 14:23:54 +00:00
|
|
|
'SKIP'
|
2013-10-21 17:37:09 +00:00
|
|
|
'8af242769611daf62a8a17349b6059f7')
|
2013-09-16 14:23:54 +00:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
cd $pkgname-$pkgver
|
|
|
|
|
2013-10-21 17:37:09 +00:00
|
|
|
# Add animated PNG (apng) support. Required by Firefox
|
2013-09-16 14:23:54 +00:00
|
|
|
# see http://sourceforge.net/projects/libpng-apng/
|
|
|
|
patch -Np1 -i ../libpng-$_apngver-apng.patch
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $pkgname-$pkgver
|
|
|
|
|
2013-10-21 17:37:09 +00:00
|
|
|
./configure --prefix=/usr --enable-arm-neon=no --disable-static
|
2013-09-16 14:23:54 +00:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd $pkgname-$pkgver
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
|
|
|
|
cd contrib/pngminus
|
|
|
|
make PNGLIB="-L$pkgdir/usr/lib -lpng" -f makefile.std png2pnm pnm2png
|
|
|
|
install -m755 png2pnm pnm2png "$pkgdir/usr/bin/"
|
|
|
|
install -D -m644 ../../LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
|
|
|
}
|