Commit c92296db authored by Rolando Espinoza's avatar Rolando Espinoza
Browse files

Add LZF builder.

LibLZF is a small compression library. Homepage:
http://oldhome.schmorp.de/marc/liblzf.html
parent e6ebbfa4
......@@ -22,6 +22,7 @@ SZIP_VERSION="${SZIP_VERSION:-2.1}"
HDF5_VERSION="${HDF5_VERSION:-1.8.18}"
LIBAEC_VERSION="${LIBAEC_VERSION:-0.3.3}"
LZO_VERSION=${LZO_VERSION:-2.09}
LZF_VERSION="${LZF_VERSION:-3.6}"
BLOSC_VERSION=${BLOSC_VERSION:-1.10.2}
CURL_VERSION=${CURL_VERSION:-7.49.1}
NETCDF_VERSION=${NETCDF_VERSION:-4.4.1}
......@@ -29,6 +30,7 @@ OPENSSL_ROOT=openssl-1.0.2j
OPENSSL_HASH=e7aff292be21c259c6af26469c7a9b3ba26e9abaaffd325e3dccc9785256c431
OPENSSL_DOWNLOAD_URL=ftp://ftp.openssl.org/source
BUILD_PREFIX="${BUILD_PREFIX:-/usr/local}"
ARCHIVE_SDIR=${ARCHIVE_DIR:-archives}
......@@ -249,6 +251,10 @@ function build_lzo {
touch lzo-stamp
}
function build_lzf {
build_simple liblzf $LZF_VERSION http://dist.schmorp.de/liblzf
}
function build_curl {
if [ -e curl-stamp ]; then return; fi
local flags="--prefix=$BUILD_PREFIX"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment