Commit 1077f273 authored by Matthew Brett's avatar Matthew Brett Committed by GitHub
Browse files

Merge pull request #19 from rolando-contrib/liblzf

Add LZF builder.
parents 8cc1e2d0 c92296db
...@@ -22,6 +22,7 @@ SZIP_VERSION="${SZIP_VERSION:-2.1}" ...@@ -22,6 +22,7 @@ SZIP_VERSION="${SZIP_VERSION:-2.1}"
HDF5_VERSION="${HDF5_VERSION:-1.8.18}" HDF5_VERSION="${HDF5_VERSION:-1.8.18}"
LIBAEC_VERSION="${LIBAEC_VERSION:-0.3.3}" LIBAEC_VERSION="${LIBAEC_VERSION:-0.3.3}"
LZO_VERSION=${LZO_VERSION:-2.09} LZO_VERSION=${LZO_VERSION:-2.09}
LZF_VERSION="${LZF_VERSION:-3.6}"
BLOSC_VERSION=${BLOSC_VERSION:-1.10.2} BLOSC_VERSION=${BLOSC_VERSION:-1.10.2}
SNAPPY_VERSION="${SNAPPY_VERSION:-1.1.3}" SNAPPY_VERSION="${SNAPPY_VERSION:-1.1.3}"
CURL_VERSION=${CURL_VERSION:-7.49.1} CURL_VERSION=${CURL_VERSION:-7.49.1}
...@@ -30,6 +31,7 @@ OPENSSL_ROOT=openssl-1.0.2j ...@@ -30,6 +31,7 @@ OPENSSL_ROOT=openssl-1.0.2j
OPENSSL_HASH=e7aff292be21c259c6af26469c7a9b3ba26e9abaaffd325e3dccc9785256c431 OPENSSL_HASH=e7aff292be21c259c6af26469c7a9b3ba26e9abaaffd325e3dccc9785256c431
OPENSSL_DOWNLOAD_URL=ftp://ftp.openssl.org/source OPENSSL_DOWNLOAD_URL=ftp://ftp.openssl.org/source
BUILD_PREFIX="${BUILD_PREFIX:-/usr/local}" BUILD_PREFIX="${BUILD_PREFIX:-/usr/local}"
ARCHIVE_SDIR=${ARCHIVE_DIR:-archives} ARCHIVE_SDIR=${ARCHIVE_DIR:-archives}
...@@ -254,6 +256,10 @@ function build_lzo { ...@@ -254,6 +256,10 @@ function build_lzo {
touch lzo-stamp touch lzo-stamp
} }
function build_lzf {
build_simple liblzf $LZF_VERSION http://dist.schmorp.de/liblzf
}
function build_curl { function build_curl {
if [ -e curl-stamp ]; then return; fi if [ -e curl-stamp ]; then return; fi
local flags="--prefix=$BUILD_PREFIX" 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