source: issm/trunk-jpl/externalpackages/nco/install.sh@ 23763

Last change on this file since 23763 was 23763, checked in by Mathieu Morlighem, 6 years ago

CHG: added nco

  • Property svn:executable set to *
File size: 322 bytes
Line 
1#!/bin/bash
2set -eu
3#you need hdf5 compiled
4
5#Some cleanup
6rm -rf install
7mkdir install
8
9git clone https://github.com/nco/nco.git install
10cd install
11git checkout 4.7.9
12
13#Configure and compile
14./configure \
15 --prefix="$ISSM_DIR/externalpackages/nco/install"
16
17if [ $# -eq 0 ]; then
18 make
19else
20 make -j $1
21fi
22make install
Note: See TracBrowser for help on using the repository browser.