Changeset 26744 for issm/trunk/externalpackages/netcdf/install-4.7.sh
- Timestamp:
- 12/22/21 10:39:44 (3 years ago)
- Location:
- issm/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk
- Property svn:mergeinfo changed
/issm/trunk-jpl merged: 25837-25866,25868-25993,25995-26330,26332-26733,26736-26739,26741
- Property svn:mergeinfo changed
-
issm/trunk/externalpackages/netcdf/install-4.7.sh
r25836 r26744 9 9 # - curl (7.18.0 or later, for DAP remote access client support) 10 10 # 11 # For most ISSM installations, only hdf5 will be necessary12 #13 11 # Sources: 14 12 # - https://www.unidata.ucar.edu/software/netcdf/documentation/NUG/getting_and_building_netcdf.html#building … … 18 16 # 19 17 VER="4.7.2" 20 CURL_ROOT="${ISSM_DIR}/externalpackages/curl/install" 21 HDF5_ROOT="${ISSM_DIR}/externalpackages/petsc/install" 22 ZLIB_ROOT="${ISSM_DIR}/externalpackages/petsc/install" 18 19 PREFIX="${ISSM_DIR}/externalpackages/netcdf/install" # Set to location where external package should be installed 23 20 24 21 # Environment … … 34 31 35 32 # Cleanup 36 rm -rf installsrc37 mkdir installsrc33 rm -rf ${PREFIX} src 34 mkdir -p ${PREFIX} src 38 35 39 36 # Move source to 'src' directory 40 mv netcdf-c-${VER}/* src /37 mv netcdf-c-${VER}/* src 41 38 rm -rf netcdf-c-${VER} 42 39 … … 44 41 cd src 45 42 ./configure \ 46 --prefix="${ ISSM_DIR}/externalpackages/netcdf/install" \43 --prefix="${PREFIX}" \ 47 44 --disable-static \ 48 45 --disable-dependency-tracking \
Note:
See TracChangeset
for help on using the changeset viewer.