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-07-09 00:41:02 +00:00
|
|
|
fetch_download http://zlib.net/zlib-1.2.8.tar.gz \
|
|
|
|
36658cb768a54c1d4dec43c3116c27ed893e88b02ecfcb44f2166f9c0b7f2a0d
|
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
|
|
|
|
}
|
|
|
|
|