2016-02-26 01:13:52 +00:00
|
|
|
description "Library for compressing/decompressing GZIP files"
|
2016-02-19 04:12:07 +00:00
|
|
|
check_pkgconfig zlib
|
2016-02-24 04:58:08 +00:00
|
|
|
fetch_download http://zlib.net/zlib-1.2.8.tar.gz
|
2016-02-19 04:12:07 +00:00
|
|
|
build_autotools
|
2016-02-18 06:55:19 +00:00
|
|
|
|
2016-02-18 07:03:44 +00:00
|
|
|
# zlib's configure script is hand-rolled and doesn't support the normal
|
|
|
|
# --host option because, well, who knows.
|
|
|
|
do_build() {
|
2016-02-19 04:12:07 +00:00
|
|
|
if [ ! -z "$BUILD_HOST" ]; then
|
|
|
|
export CC="$BUILD_HOST-gcc"
|
|
|
|
fi
|
|
|
|
./configure --prefix="$PACKAGE_INSTALL_DIR" --static
|
2016-02-18 07:03:44 +00:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|