From 608992f17d5473f8270f0779d3b9bcfe8fbdfa1c Mon Sep 17 00:00:00 2001 From: root Date: Sun, 17 Jun 2012 00:03:04 +0000 Subject: Sun Jun 17 00:03:04 UTC 2012 --- testing/libpng/PKGBUILD | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 testing/libpng/PKGBUILD (limited to 'testing/libpng') diff --git a/testing/libpng/PKGBUILD b/testing/libpng/PKGBUILD new file mode 100644 index 000000000..225d2d163 --- /dev/null +++ b/testing/libpng/PKGBUILD @@ -0,0 +1,41 @@ +# $Id: PKGBUILD 161871 2012-06-16 00:25:49Z ibiru $ +# Maintainer: Jan de Groot +# Contributor: dorphell +# Contributor: Travis Willard +# Contributor: Douglas Soares de Andrade + +pkgname=libpng +pkgver=1.5.11 +_apngver=1.5.11 +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" + "http://downloads.sourceforge.net/sourceforge/libpng-apng/libpng-$_apngver-apng.patch.gz") +md5sums=('57f838299e701b6db9e8389c5602dc18' + 'e9ddf7670e78ad93f4cc189c884d4f26') + +build() { + cd $pkgname-$pkgver + + # Add animated PNG (apng) support + # see http://sourceforge.net/projects/libpng-apng/ + patch -p1 -i ../libpng-$_apngver-apng.patch + + ./configure --prefix=/usr + 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" +} -- cgit v1.2.3-54-g00ecf