Changes between Initial Version and Version 1 of Installation/CivxDevelloper


Ignore:
Timestamp:
Dec 5, 2011, 3:31:14 PM (12 years ago)
Author:
gostiaux
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Installation/CivxDevelloper

    v1 v1  
     1
     2{{{
     3#!/bin/bash
     4wget http://coriolis.legi.grenoble-inp.fr/IMG/tgz/uvmat_include_linux64.tgz
     5tar -xzvf uvmat_include_linux64.tgz
     6mv uvmat_linux64 uvmat
     7rm uvmat_include_linux64.tgz
     8svn checkout http://servforge.legi.grenoble-inp.fr/svn/soft-uvmat/trunk/src uvmat/
     9cd uvmat
     10rm -rf bin
     11repository=https://civx.svn.sourceforge.net/svnroot/civx
     12target=src
     13mkdir bin
     14svn co $repository/common $target/common
     15svn co $repository/civ1 $target/civ1
     16svn co $repository/civ2 $target/civ2
     17svn co $repository/fix_flag $target/fix_flag
     18svn co $repository/patch_up $target/patch_up
     19cd $target
     20cd civ1
     21cp makefile_bigtwo makefile
     22make
     23cp civ1 ../../bin/
     24cd ..
     25cd civ2
     26cp makefile_bigtwo makefile
     27make
     28cp civ2 ../../bin/
     29cd ..
     30cd fix_flag
     31cp makefile_bigtwo makefile
     32make
     33cp fix_flag ../../bin/
     34cd ..
     35cd patch_up
     36cp makefile_bigtwo makefile
     37make
     38cp patch_up ../../bin/
     39cd ..
     40cd ..
     41
     42
     43}}}