#!/bin/bash set -eu # Dependencies # - hdf5 (1.8.9 / 1.10.1 or later, for netCDF-4 support) # - zlib (1.2.5 or later, for netCDF-4 compression) # - curl (7.18.0 or later, for DAP remote access client support) # # For most ISSM installations, only hdf5 will be necessary # # Constants # VER="4.7.2" HDF5_ROOT="${ISSM_DIR}/externalpackages/hdf5/install" ZLIB_ROOT="${ISSM_DIR}/externalpackages/zlib/install" # Environment # export CPPFLAGS="-I${ZLIB_ROOT}/include -I${HDF5_ROOT}/include" export LDFLAGS="-L${ZLIB_ROOT}/lib -L${HDF5_ROOT}/lib" # Download source $ISSM_DIR/scripts/DownloadExternalPackage.sh "https://issm.ess.uci.edu/files/externalpackages/netcdf-c-${VER}.tar.gz" "netcdf-c-${VER}.tar.gz" # Unpack source tar -zxvf netcdf-c-$VER.tar.gz # Cleanup rm -rf install src mkdir install src # Move source to 'src' directory mv netcdf-c-$VER/* src/ rm -rf netcdf-c-$VER # Configure cd src ./configure \ --prefix="${ISSM_DIR}/externalpackages/netcdf/install" \ --disable-doxygen # Compile and install if [ $# -eq 0 ]; then make make install else make -j $1 make -j $1 install fi # Return to initial directory cd ..