core/zlib/PKGBUILD

35 lines
773 B
Bash
Raw Normal View History

#
# Chakra Packages for Chakra, part of chakra-project.org
#
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
2010-03-13 23:25:19 +08:00
pkgname=zlib
pkgver=1.2.8
2012-06-03 06:07:19 +08:00
pkgrel=1
2010-03-13 23:25:19 +08:00
pkgdesc='Compression library implementing the deflate compression method found in gzip and PKZIP'
arch=('i686' 'x86_64')
license=('custom')
url="http://www.zlib.net/"
depends=('glibc')
2012-06-03 06:07:19 +08:00
source=("http://zlib.net/current/zlib-${pkgver}.tar.gz")
md5sums=('44d667c142d7cda120332623eab69f40')
2010-03-13 23:25:19 +08:00
build() {
cd ${srcdir}/zlib-$pkgver
2010-05-16 23:08:55 +08:00
./configure --prefix=/usr
make
2010-03-13 23:25:19 +08:00
grep -A 24 '^ Copyright' zlib.h > LICENSE
}
2012-06-03 06:07:19 +08:00
check() {
cd ${srcdir}/zlib-$pkgver
make test
}
2010-03-13 23:25:19 +08:00
package() {
cd ${srcdir}/zlib-$pkgver
make install DESTDIR=${pkgdir}
2010-03-13 23:25:19 +08:00
install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/zlib/LICENSE
2012-06-03 06:07:19 +08:00
}