Commit 39d290d3 authored by Matthew Brett's avatar Matthew Brett
Browse files

Rewrite HDF5 URL to follow new scheme

See: https://github.com/MacPython/h5py-wheels/pull/3
parent 861d4b6e
...@@ -200,7 +200,8 @@ function build_hdf5 { ...@@ -200,7 +200,8 @@ function build_hdf5 {
# libaec is a drop-in replacement for szip # libaec is a drop-in replacement for szip
build_libaec build_libaec
local hdf5_url=https://www.hdfgroup.org/ftp/HDF5/releases local hdf5_url=https://www.hdfgroup.org/ftp/HDF5/releases
fetch_unpack $hdf5_url/hdf5-$HDF5_VERSION/src/hdf5-$HDF5_VERSION.tar.gz local short=$(echo $HDF5_VERSION | awk -F "." '{printf "%d.%d", $1, $2}')
fetch_unpack $hdf5_url/hdf5-$short/hdf5-$HDF5_VERSION/src/hdf5-$HDF5_VERSION.tar.gz
(cd hdf5-$HDF5_VERSION \ (cd hdf5-$HDF5_VERSION \
&& ./configure --with-szlib=$BUILD_PREFIX --prefix=$BUILD_PREFIX \ && ./configure --with-szlib=$BUILD_PREFIX --prefix=$BUILD_PREFIX \
&& make \ && make \
......
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