PKGBUILDs/community/optipng/PKGBUILD

36 lines
970 B
Bash
Raw Normal View History

2016-04-05 01:06:54 +00:00
# $Id$
# Maintainer: Lukas Fleischer <lfleischer@archlinux.org>
# Contributor: Stefan Husmann <stefan-husmann@t-online.de>
# Contributor: Aaron Schaefer <aaron@elasticdog.com>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - 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"
}