source: issm/trunk-jpl/externalpackages/colpack/install.sh@ 11101

Last change on this file since 11101 was 11101, checked in by Mathieu Morlighem, 13 years ago

Changing the way externalpackages are installed: one script per version and per platform if necessary. The goal is to make the installation process more userfriendly

  • Property svn:executable set to *
File size: 220 bytes
Line 
1#!/bin/bash
2
3#Erase install
4rm -rf install src ColPack
5
6#install directory
7mkdir src
8tar -zxvf ColPack-1.0.3.tar.gz
9mv ColPack/* src
10rm -rf ColPack
11
12#compile
13cd src
14make -j $1
15cd ..
16
17#install
18ln -s src/build ./install
Note: See TracBrowser for help on using the repository browser.