mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
55 lines
1.7 KiB
Bash
55 lines
1.7 KiB
Bash
# $Id$
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
# Contributor: dorphell <dorphell@archlinux.org>
|
|
# Contributor: Travis Willard <travis@archlinux.org>
|
|
# Contributor: Douglas Soares de Andrade <douglas@archlinux.org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - added --enable-arm-neon=no to configure for !aarch64
|
|
|
|
pkgname=libpng
|
|
pkgver=1.6.30
|
|
_apngver=1.6.30
|
|
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')
|
|
validpgpkeys=('8048643BA2C840F4F92A195FF54984BFA16C640F') # Glenn Randers-Pehrson (mozilla) <glennrp@gmail.com>
|
|
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.xz{,.asc}
|
|
http://downloads.sourceforge.net/sourceforge/libpng-apng/libpng-$_apngver-apng.patch.gz)
|
|
sha256sums=('267c332ffff70cc599d3929207869f698798f1df143aa5f9597b007c14353666'
|
|
'SKIP'
|
|
'1a6359b1fa7855ed8afcf11be57725093d29cc7ee921c8e030c59d63c565d91a')
|
|
|
|
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
|
|
|
|
[[ $CARCH != "aarch64" ]] && CONFIG="--enable-arm-neon=no"
|
|
./configure --prefix=/usr --disable-static $CONFIG
|
|
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"
|
|
}
|