mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
54 lines
1.7 KiB
Bash
54 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
|
|
|
|
pkgname=libpng
|
|
pkgver=1.6.34
|
|
_apngver=1.6.34
|
|
pkgrel=2
|
|
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=("https://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.xz"{,.asc}
|
|
"https://downloads.sourceforge.net/sourceforge/libpng-apng/libpng-$_apngver-apng.patch.gz")
|
|
sha256sums=('2f1e960d92ce3b3abd03d06dfec9637dfbd22febf107a536b44f7a47c60659f6'
|
|
'SKIP'
|
|
'e661944e54574a3f26927ac9eb7e2788f3a2675545a19735b83fbb9adcb544c1')
|
|
|
|
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"
|
|
}
|