pkgname=libpng pkgver=1.6.34 _apngver=${pkgver} pkgrel=1 pkgdesc="A collection of routines used to create PNG format graphics files" arch=('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/apng/libpng-$_apngver-apng.patch.gz) sha1sums=('45de4ec996ffcc3e18037e7c128abe95f4d0292a' 'SKIP' '58fe477a096283246df118191f7b74f248d822f5') validpgpkeys=('8048643BA2C840F4F92A195FF54984BFA16C640F') # Glenn Randers-Pehrson (mozilla) prepare() { cd ${pkgname}-${pkgver} # Add animated PNG (apng) support # see http://sourceforge.net/projects/libpng-apng/ patch -Np0 -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 -Dm644 ../../LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" }