mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
50 lines
1.5 KiB
Bash
50 lines
1.5 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.18
|
|
_apngver=1.6.18
|
|
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')
|
|
options=('!libtool')
|
|
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.xz{,.asc}
|
|
http://downloads.sourceforge.net/sourceforge/libpng-apng/libpng-$_apngver-apng.patch.gz)
|
|
md5sums=('6a57c8e0f5469b9c9949a4b43d57b3a1'
|
|
'SKIP'
|
|
'a9c85fe3cf0347ea94356f1e70d07973')
|
|
validpgpkeys=('8048643BA2C840F4F92A195FF54984BFA16C640F')
|
|
|
|
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 --enable-arm-neon=no --disable-static
|
|
make
|
|
}
|
|
|
|
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"
|
|
}
|