source: issm/trunk-jpl/externalpackages/netcdf-cxx/install.sh@ 23435

Last change on this file since 23435 was 23435, checked in by jdquinn, 6 years ago

CHG: Renamed download_external_package.bash -> DownloadExternalPackage.sh and updated calls to it in install scripts

  • Property svn:executable set to *
File size: 556 bytes
Line 
1#!/bin/bash
2set -eu
3
4#Some cleanup
5rm -rf install netcdf-cxx-4.2
6mkdir install
7
8#Download from ISSM server
9$ISSM_DIR/scripts/DownloadExternalPackage.sh 'https://issm.ess.uci.edu/files/externalpackages/netcdf-cxx-4.2.tar.gz' 'netcdf-cxx-4.2.tar.gz'
10
11#Untar
12tar -zxvf netcdf-cxx-4.2.tar.gz
13
14#Move metis into install directory
15mv netcdf-cxx-4.2/* install
16rm -rf netcdf-cxx-4.2
17
18#Compile
19export CXXFLAGS="-I$ISSM_DIR/externalpackages/netcdf/install/include "
20cd install
21./configure --prefix="$ISSM_DIR/externalpackages/netcdf-cxx/install"
22make
23make install
Note: See TracBrowser for help on using the repository browser.