# $Id$ # Maintainer: Jan de Groot # Contributor: dorphell # Contributor: Travis Willard # Contributor: Douglas Soares de Andrade pkgname=libpng pkgver=1.6.15 _apngver=1.6.15 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') 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=('a95cb387c53215b034203b41ec57c7e5' 'SKIP' '612524080d5515f4ea81541a9b13bf61') prepare() { cd $pkgname-$pkgver # Add animated PNG (apng) support. Required by Firefox # see http://sourceforge.net/projects/libpng-apng/ patch -Np1 -i ../libpng-$_apngver-apng.patch } build() { cd $pkgname-$pkgver ./configure --prefix=/usr --disable-static make } check() { cd $pkgname-$pkgver make check } 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" }