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
|
---|
4 | rm -rf install src ColPack
|
---|
5 |
|
---|
6 | #install directory
|
---|
7 | mkdir src
|
---|
8 | tar -zxvf ColPack-1.0.3.tar.gz
|
---|
9 | mv ColPack/* src
|
---|
10 | rm -rf ColPack
|
---|
11 |
|
---|
12 | #compile
|
---|
13 | cd src
|
---|
14 | make -j $1
|
---|
15 | cd ..
|
---|
16 |
|
---|
17 | #install
|
---|
18 | ln -s src/build ./install
|
---|
Note:
See
TracBrowser
for help on using the repository browser.