# $Id$ # Maintainer: Lukas Fleischer # Contributor: Stefan Husmann # Contributor: Aaron Schaefer # ALARM: Kevin Mihelich # - disable neon in included libpng via CPPFLAGS to fix FTBFS pkgname=optipng pkgver=0.7.6 pkgrel=1 pkgdesc='Compresses PNG files to a smaller size, without losing any information.' arch=('i686' 'x86_64') url='http://optipng.sourceforge.net/' license=('ZLIB') depends=('glibc') source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz") md5sums=('568e0738358450eca69ecf578d48f26c') build() { cd "$srcdir/$pkgname-$pkgver" CPPFLAGS+=" -DPNG_ARM_NEON_OPT=0" ./configure --prefix=/usr make } package() { cd "$srcdir/$pkgname-$pkgver" make prefix="$pkgdir/usr" mandir="$pkgdir/usr/share/man" install # install license install -Dm0644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE" }