2010-04-24 04:36:03 +00:00
|
|
|
# Maintainer: Mike Staszel <mikestaszel@plugboxlinux.org>
|
2010-02-27 16:19:00 +00:00
|
|
|
|
|
|
|
pkgname=zlib
|
2010-04-24 04:36:03 +00:00
|
|
|
pkgver=1.2.5
|
2010-07-28 19:27:38 +00:00
|
|
|
pkgrel=2
|
|
|
|
pkgdesc='Compression library implementing the deflate compression method found in gzip and PKZIP'
|
|
|
|
arch=('i686' 'x86_64' 'arm')
|
|
|
|
license=('custom')
|
2010-02-27 16:19:00 +00:00
|
|
|
url="http://www.zlib.net/"
|
|
|
|
depends=('glibc')
|
2010-07-28 19:27:38 +00:00
|
|
|
options=('!makeflags')
|
|
|
|
source=("http://zlib.net/zlib-${pkgver}.tar.gz"
|
|
|
|
'zlib-1.2.5-lfs-decls.patch')
|
|
|
|
md5sums=('c735eab2d659a96e5a594c9e8541ad63'
|
|
|
|
'4cb279ea3beab621f3526bf7b7ab99e5')
|
2010-02-27 16:19:00 +00:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd ${srcdir}/zlib-$pkgver
|
|
|
|
|
2010-07-28 19:27:38 +00:00
|
|
|
# see http://bugs.archlinux.org/task/19280
|
|
|
|
patch -p1 -i ${srcdir}/zlib-1.2.5-lfs-decls.patch || return 1
|
|
|
|
|
2010-02-27 16:19:00 +00:00
|
|
|
./configure --prefix=/usr --shared
|
2010-07-28 19:27:38 +00:00
|
|
|
|
2010-02-27 16:19:00 +00:00
|
|
|
make || return 1
|
|
|
|
|
2010-07-28 19:27:38 +00:00
|
|
|
grep -A 24 '^ Copyright' zlib.h > LICENSE
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd ${srcdir}/zlib-$pkgver
|
|
|
|
make install DESTDIR=${pkgdir} || return 1
|
|
|
|
install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/zlib/LICENSE
|
2010-02-27 16:19:00 +00:00
|
|
|
}
|