# Template build file for 'zlib' pkgname=zlib version=1.2.8 revision=1 bootstrap=yes short_desc="A compression/decompression Library" maintainer="Juan RP " license="zlib" homepage="http://www.zlib.net" distfiles="$homepage/$pkgname-$version.tar.gz" checksum=36658cb768a54c1d4dec43c3116c27ed893e88b02ecfcb44f2166f9c0b7f2a0d long_desc=" This is a general purpose data compression library. All the code is thread safe. The data format used by the library is described by RFCs (Request for Comments) 1950 to 1952." do_configure() { CFLAGS="$CFLAGS -fPIC" ./configure --prefix=/usr --shared } do_build() { make ${makejobs} } do_install() { make DESTDIR=${DESTDIR} LDCONFIG= install } zlib-devel_package() { depends="zlib>=${version}" short_desc+=" - development files" pkg_install() { vmove usr/include vmove usr/lib/pkgconfig vmove "usr/lib/*.a" vmove usr/share } } zlib_package() { pkg_install() { vmove usr } }