source: issm/trunk-jpl/externalpackages/metis/install-4.0-macosx64.sh@ 11427

Last change on this file since 11427 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: 313 bytes
RevLine 
[11101]1#!/bin/bash
2
3#Some cleanup
4rm -rf install metis-4.0
5mkdir install
6
7#Untar
8tar -zxvf metis-4.0.tar.gz
9
10#Move metis into install directory
11mv metis-4.0/* install
12rm -rf metis-4.0
13
14#Apply patches
15cd install
16patch -p1 < ../metis-4.0.patch
17patch Makefile.in ../configs/4.0/macosx64/Makefile.in.patch
18
19#Compile
20make
Note: See TracBrowser for help on using the repository browser.