diff options
author | Cecil Hugh Watson <knoppmyth@gmail.com> | 2010-09-05 06:07:54 (GMT) |
---|---|---|
committer | Cecil Hugh Watson <knoppmyth@gmail.com> | 2010-09-05 06:07:54 (GMT) |
commit | af1cf9eb9f67c38319bce5fc2adbf225d2f1a071 (patch) | |
tree | 9e03fc8dc963a603f284abc97284f0f1c6dfe769 /abs | |
parent | f508f694cb958868145869dc952971b897f391ca (diff) | |
download | linhes_pkgbuild-af1cf9eb9f67c38319bce5fc2adbf225d2f1a071.zip linhes_pkgbuild-af1cf9eb9f67c38319bce5fc2adbf225d2f1a071.tar.gz linhes_pkgbuild-af1cf9eb9f67c38319bce5fc2adbf225d2f1a071.tar.bz2 |
libmng:Bumped/Updated for LinHES 7.
Diffstat (limited to 'abs')
-rw-r--r-- | abs/extra-testing/libmng/PKGBUILD | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/abs/extra-testing/libmng/PKGBUILD b/abs/extra-testing/libmng/PKGBUILD new file mode 100644 index 0000000..6607718 --- /dev/null +++ b/abs/extra-testing/libmng/PKGBUILD @@ -0,0 +1,25 @@ +# $Id: PKGBUILD 63248 2010-01-16 20:44:09Z jgc $ +# Contributor: Tom Newsom <Jeepster@gmx.co.uk> +# Maintainer: judd <jvinet@zeroflux.org> +pkgname=libmng +pkgver=1.0.10 +pkgrel=3 +pkgdesc="A collection of routines used to create and manipulate MNG format graphics files" +arch=('i686' 'x86_64') +url="http://www.libmng.com/" +license=('custom') +depends=('zlib' 'libjpeg>=8') +options=(!libtool) +source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz) +md5sums=('a464ae7d679781beebdf7440d144b7bd') + +build() { + cd $srcdir/$pkgname-$pkgver + ln -s makefiles/configure.in . + ln -s makefiles/Makefile.am . + autoreconf --force --install + ./configure --prefix=/usr + make || return 1 + make DESTDIR=$pkgdir install || return 1 + install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE +} |