source code:
command line:
# Build and install zlib
ZDIR=/usr/local
./configure --prefix=${ZDIR}
make check
make install # or sudo make install, if root permissions required
source code:
HDF5® Source Code - The HDF Group
command line:
# Build and install HDF5
H5DIR=/usr/local
# Add Parallel Support
CC=mpicc ./configure --enable-parallel --prefix=${H5DIR} --with-zlib=${ZDIR} --enable-hl
make check
make install # or sudo make install, if root permissions required
source code:
# Build and install HDF4
H4DIR=/usr/local
./configure --enable-shared --disable-netcdf --disable-fortran --prefix=${H4DIR}
make check
make install
source code:
# Build and install PnetCDF
PNDIR=/usr/local
./configure --prefix=${PNDIR} --with-mpi=/path/to/MPI/compilers --enable-shared
make check
make install