Ignore:
Timestamp:
04/10/22 13:17:30 (3 years ago)
Author:
jdquinn
Message:

CHG: Various changes to external packages and configuration in support of solid earth build on Pleiades; various pending commits

File:
1 moved

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/externalpackages/hdf5/install-1-parallel-with_tests.sh

    r26949 r26950  
    66#
    77VER="1.10.5"
    8 ZLIB_ROOT="${ISSM_DIR}/externalpackages/zlib/install"
     8
     9PREFIX="${ISSM_DIR}/externalpackages/hdf5/install" # Set to location where external package should be installed
    910
    1011## Environnment
     
    1617
    1718# Untar source
    18 tar -zxvf hdf5-$VER.tar.gz
     19tar -zxvf hdf5-${VER}.tar.gz
    1920
    2021# Cleanup
     
    2324
    2425# Move source to 'src' directory
    25 mv hdf5-$VER/* src/
    26 rm -rf hdf5-$VER
     26mv hdf5-${VER}/* src/
     27rm -rf hdf5-${VER}
    2728
    2829# Configure
    2930cd src
    3031./configure \
    31         --prefix="${ISSM_DIR}/externalpackages/hdf5/install" \
     32        --prefix="${PREFIX}" \
    3233        --enable-parallel \
    33         --with-zlib=${ZLIB_ROOT} \
     34        --with-zlib="${ZLIB_ROOT}" \
    3435        --enable-hl
    3536
     
    4546        make -j $1 install
    4647fi
    47 
    48 # Return to initial directory
    49 cd ..
Note: See TracChangeset for help on using the changeset viewer.