- Timestamp:
- 04/10/22 13:17:30 (3 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/externalpackages/hdf5/install-1-parallel-with_tests.sh
r26949 r26950 6 6 # 7 7 VER="1.10.5" 8 ZLIB_ROOT="${ISSM_DIR}/externalpackages/zlib/install" 8 9 PREFIX="${ISSM_DIR}/externalpackages/hdf5/install" # Set to location where external package should be installed 9 10 10 11 ## Environnment … … 16 17 17 18 # Untar source 18 tar -zxvf hdf5-$ VER.tar.gz19 tar -zxvf hdf5-${VER}.tar.gz 19 20 20 21 # Cleanup … … 23 24 24 25 # Move source to 'src' directory 25 mv hdf5-$ VER/* src/26 rm -rf hdf5-$ VER26 mv hdf5-${VER}/* src/ 27 rm -rf hdf5-${VER} 27 28 28 29 # Configure 29 30 cd src 30 31 ./configure \ 31 --prefix="${ ISSM_DIR}/externalpackages/hdf5/install" \32 --prefix="${PREFIX}" \ 32 33 --enable-parallel \ 33 --with-zlib= ${ZLIB_ROOT}\34 --with-zlib="${ZLIB_ROOT}" \ 34 35 --enable-hl 35 36 … … 45 46 make -j $1 install 46 47 fi 47 48 # Return to initial directory49 cd ..
Note:
See TracChangeset
for help on using the changeset viewer.