updated on Wed Jan 25 08:34:36 UTC 2012
[aur-mirror.git] / alpng-nozlib / PKGBUILD
blob521421e19ad4d1016c0d89aa80828a88c69b08ed
1 # Contributor: Micael Soder <zoulnix|at|gmail|dot|com>
2 # Maintainer: Dany Martineau <dany.luc.martineau gmail com>
4 pkgname=alpng-nozlib
5 pkgver=1.3
6 pkgrel=2
7 pkgdesc="Library for loading PNG files for the Allegro library.  Without zlib linking."
8 arch=('i686' 'x86_64')
9 url="http://alpng.sourceforge.net/"
10 license=('GPL')
11 depends=('allegro')
12 makedepends=('gcc' 'make' 'pkgconfig')
13 source=(http://downloads.sourceforge.net/alpng/alpng13.tar.gz)
14 md5sums=('e1e4cf2771663a43c065e04ce5f4efd9')
15 provides=('alpng')
16 conflicts=('alpng')
18 build() {
19   cd ${srcdir}
20   mkdir -p ${pkgdir}/usr/{lib,include}
22   ./configure
23   make || return 1
25   install -m644 libalpng.a ${pkgdir}/usr/lib/ || return 1
26   install -m644 src/alpng.h ${pkgdir}/usr/include/ || return 1