# Maintainer: Jan de Groot # Contributor: dorphell # Contributor: Travis Willard # Contributor: Douglas Soares de Andrade # ALARM: Kevin Mihelich # - added --enable-arm-neon=no to configure pkgname=libpng pkgver=1.6.36 _apngver=1.6.36 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') validpgpkeys=('8048643BA2C840F4F92A195FF54984BFA16C640F') # Glenn Randers-Pehrson (mozilla) source=("https://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.xz" "https://downloads.sourceforge.net/sourceforge/libpng-apng/libpng-$_apngver-apng.patch.gz") sha256sums=('eceb924c1fa6b79172fdfd008d335f0e59172a86a66481e09d4089df872aa319' '8c1f33da739b29a77e35e5a1ebcdffaab63bfe184be8b5a97677cc80156fdc0f') 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 --enable-arm-neon=no 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" }