Changeset 13249
- Timestamp:
- 09/04/12 16:24:49 (13 years ago)
- Location:
- issm/trunk-jpl/externalpackages
- Files:
-
- 56 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/externalpackages/adic/install.sh
r13246 r13249 27 27 --with-colpack=$ISSM_DIR/externalpackages/colpack/install\ 28 28 --prefix=$ISSM_DIR/externalpackages/adic/install 29 if [ -z $1]; then29 if [ $# -eq 0 ]; then 30 30 make 31 31 else -
issm/trunk-jpl/externalpackages/adolc/install.sh
r13246 r13249 20 20 rm -rf ADOL-C-2.2.0 21 21 22 23 22 #Compile ADOL-C 24 23 cd src … … 36 35 --disable-shave 37 36 38 if [ -z $1]; then37 if [ $# -eq 0 ]; then 39 38 make 40 39 else … … 54 53 55 54 #remake: 56 if [ -z $1]; then55 if [ $# -eq 0 ]; then 57 56 make 58 57 else … … 60 59 fi 61 60 make install 62 63 -
issm/trunk-jpl/externalpackages/apr-util/install.sh
r13246 r13249 23 23 24 24 #Compile and install apr-util 25 if [ -z $1]; then25 if [ $# -eq 0 ]; then 26 26 make 27 27 else -
issm/trunk-jpl/externalpackages/apr/install.sh
r13246 r13249 23 23 24 24 #Compile and install apr 25 if [ -z $1]; then25 if [ $# -eq 0 ]; then 26 26 make 27 27 else -
issm/trunk-jpl/externalpackages/chaco/install.sh
r13246 r13249 24 24 # Build chaco 25 25 cd src/code 26 if [ -z $1]; then26 if [ $# -eq 0 ]; then 27 27 make 28 28 else -
issm/trunk-jpl/externalpackages/cmake/install.sh
r13246 r13249 19 19 cd install 20 20 ./bootstrap --prefix=$ISSM_DIR/externalpackages/cmake/install 21 if [ -z $1]; then21 if [ $# -eq 0 ]; then 22 22 make 23 23 else -
issm/trunk-jpl/externalpackages/colpack/install.sh
r13246 r13249 16 16 #compile 17 17 cd src 18 if [ -z $1]; then18 if [ $# -eq 0 ]; then 19 19 make 20 20 else -
issm/trunk-jpl/externalpackages/cppcheck/install.sh
r13246 r13249 15 15 #compile 16 16 cd src 17 if [ -z $1]; then17 if [ $# -eq 0 ]; then 18 18 make 19 19 else -
issm/trunk-jpl/externalpackages/dakota/install-altix64-cosmos.sh
r13246 r13249 1 1 #!/bin/bash 2 2 set -eu 3 4 #Get number of cpus5 NUMCPUS=$1;6 3 7 4 #Some cleanup … … 85 82 #Compile and install dakota 86 83 cd src 87 if [ -z $NUMCPUS];84 if [ $# -eq 0 ]; 88 85 then 89 86 make 90 87 make install 91 88 else 92 make -j $ NUMCPUS93 make -j $ NUMCPUSinstall89 make -j $1 90 make -j $1 install 94 91 fi 95 92 cd .. -
issm/trunk-jpl/externalpackages/dakota/install-discover.sh
r13246 r13249 1 1 #!/bin/bash 2 2 set -eu 3 4 #Get number of cpus5 NUMCPUS=$1;6 3 7 4 #Some cleanup … … 85 82 #Compile and install dakota 86 83 cd src 87 if [ -z $NUMCPUS];84 if [ $# -eq 0 ]; 88 85 then 89 86 make 90 87 make install 91 88 else 92 make -j $ NUMCPUS93 make -j $ NUMCPUSinstall89 make -j $1 90 make -j $1 install 94 91 fi 95 92 cd .. -
issm/trunk-jpl/externalpackages/dakota/install-linux64-astrid.sh
r13246 r13249 1 1 #!/bin/bash 2 2 set -eu 3 4 #Get number of cpus5 NUMCPUS=$1;6 3 7 4 #Some cleanup … … 85 82 #Compile and install dakota 86 83 cd src 87 if [ -z $NUMCPUS];84 if [ $# -eq 0 ]; 88 85 then 89 86 make 90 87 make install 91 88 else 92 make -j $ NUMCPUS93 make -j $ NUMCPUSinstall89 make -j $1 90 make -j $1 install 94 91 fi 95 92 cd .. -
issm/trunk-jpl/externalpackages/dakota/install-linux64-murdo.sh
r13246 r13249 1 1 #!/bin/bash 2 2 set -eu 3 4 #Get number of cpus5 NUMCPUS=$1;6 3 7 4 #Some cleanup … … 85 82 #Compile and install dakota 86 83 cd src 87 if [ -z $NUMCPUS];84 if [ $# -eq 0 ]; 88 85 then 89 86 make 90 87 make install 91 88 else 92 make -j $ NUMCPUS93 make -j $ NUMCPUSinstall89 make -j $1 90 make -j $1 install 94 91 fi 95 92 cd .. -
issm/trunk-jpl/externalpackages/dakota/install-macosx64.sh
r13246 r13249 1 1 #!/bin/bash 2 2 set -eu 3 4 #Get number of cpus5 NUMCPUS=$1;6 3 7 4 #Some cleanup … … 85 82 #Compile and install dakota 86 83 cd src 87 if [ -z $NUMCPUS];84 if [ $# -eq 0 ]; 88 85 then 89 86 make 90 87 make install 91 88 else 92 make -j $ NUMCPUS93 make -j $ NUMCPUSinstall89 make -j $1 90 make -j $1 install 94 91 fi 95 92 cd .. -
issm/trunk-jpl/externalpackages/dakota/install-pleiades.sh
r13246 r13249 1 1 #!/bin/bash 2 2 set -eu 3 4 #Get number of cpus5 NUMCPUS=$1;6 3 7 4 #Some cleanup … … 85 82 #Compile and install dakota 86 83 cd src 87 if [ -z $NUMCPUS];84 if [ $# -eq 0 ]; 88 85 then 89 86 make 90 87 make install 91 88 else 92 make -j $ NUMCPUS93 make -j $ NUMCPUSinstall89 make -j $1 90 make -j $1 install 94 91 fi 95 92 cd .. -
issm/trunk-jpl/externalpackages/doxygen/install.sh
r13246 r13249 10 10 #Configure doxygen 11 11 cd install && ./configure --prefix "$ISSM_DIR/externalpackages/doxygen/install" 12 if [ -z $1]; then12 if [ $# -eq 0 ]; then 13 13 make 14 14 else -
issm/trunk-jpl/externalpackages/esmf/install.sh
r13246 r13249 33 33 34 34 #Compile and install esmf 35 if [ -z $1]; then35 if [ $# -eq 0 ]; then 36 36 make 37 37 make install … … 44 44 if [[ $install == "2" ]]; then 45 45 cd esmf 46 if [ -z $1]; then46 if [ $# -eq 0 ]; then 47 47 make all_tests 48 48 else -
issm/trunk-jpl/externalpackages/freetype/install.sh
r13246 r13249 23 23 24 24 #Compile and install freetype 25 if [ -z $1]; then25 if [ $# -eq 0 ]; then 26 26 sudo make 27 27 else -
issm/trunk-jpl/externalpackages/gdal/install-murdo.sh
r13246 r13249 32 32 33 33 #Compile and install gdal 34 if [ -z $1]; then34 if [ $# -eq 0 ]; then 35 35 make 36 36 else -
issm/trunk-jpl/externalpackages/gdal/install.sh
r13246 r13249 34 34 35 35 #Compile and install gdal 36 if [ -z $1]; then36 if [ $# -eq 0 ]; then 37 37 make 38 38 else -
issm/trunk-jpl/externalpackages/gmake/install.sh
r13246 r13249 22 22 ./configure --prefix=$ISSM_DIR/externalpackages/gmake/install 23 23 24 if [ -z $1]; then24 if [ $# -eq 0 ]; then 25 25 make 26 26 make install -
issm/trunk-jpl/externalpackages/graphviz/install.sh
r13246 r13249 23 23 #Compile and install 24 24 cd src 25 if [ -z $1]; then25 if [ $# -eq 0 ]; then 26 26 make 27 27 else -
issm/trunk-jpl/externalpackages/gsl/install-android.sh
r13246 r13249 36 36 #Compile gsl 37 37 if [[ $step == "3" || $step == "0" ]]; then 38 if [ -z $1]; then38 if [ $# -eq 0 ]; then 39 39 make $j 40 40 else -
issm/trunk-jpl/externalpackages/gsl/install-linux64.sh
r13246 r13249 23 23 24 24 #Compile gsl 25 if [ -z $1]; then25 if [ $# -eq 0 ]; then 26 26 make 27 27 else -
issm/trunk-jpl/externalpackages/gsl/install-macosx64.sh
r13246 r13249 25 25 26 26 #Compile gsl 27 if [ -z $1]; then27 if [ $# -eq 0 ]; then 28 28 make 29 29 else -
issm/trunk-jpl/externalpackages/gsl/install-pleiades.sh
r13246 r13249 23 23 24 24 #Compile gsl 25 if [ -z $1]; then25 if [ $# -eq 0 ]; then 26 26 make 27 27 else -
issm/trunk-jpl/externalpackages/hdf5/install.sh
r13246 r13249 20 20 cd src 21 21 ./configure --prefix="$ISSM_DIR/externalpackages/hdf5/install" 22 if [ -z $1]; then22 if [ $# -eq 0 ]; then 23 23 make 24 24 else -
issm/trunk-jpl/externalpackages/lapack/install-linux64.sh
r13246 r13249 21 21 22 22 #Compile and install lapack 23 if [ -z $1]; then23 if [ $# -eq 0 ]; then 24 24 make lib 25 25 else -
issm/trunk-jpl/externalpackages/libpng/install.sh
r13246 r13249 23 23 24 24 #Compile and install libpng 25 if [ -z $1]; then25 if [ $# -eq 0 ]; then 26 26 sudo make 27 27 else -
issm/trunk-jpl/externalpackages/modules/install-macosx64.sh
r13246 r13249 32 32 33 33 #Compile and install modules 34 if [ -z $1]; then34 if [ $# -eq 0 ]; then 35 35 make 36 36 else -
issm/trunk-jpl/externalpackages/mpich2/install-1.0.2-altix64.sh
r13246 r13249 32 32 33 33 #Compile mpich2 34 if [ -z $1]; then34 if [ $# -eq 0 ]; then 35 35 make 36 36 else -
issm/trunk-jpl/externalpackages/mpich2/install-1.0.2-linux64.sh
r13246 r13249 32 32 33 33 #Compile mpich2 34 if [ -z $1]; then34 if [ $# -eq 0 ]; then 35 35 make 36 36 else -
issm/trunk-jpl/externalpackages/mpich2/install-1.0.2-macosx32.sh
r13246 r13249 31 31 32 32 #Compile mpich2 33 if [ -z $1]; then33 if [ $# -eq 0 ]; then 34 34 make 35 35 else -
issm/trunk-jpl/externalpackages/mpich2/install-1.0.2-win32.sh
r13246 r13249 29 29 30 30 #Compile mpich2 31 if [ -z $1]; then31 if [ $# -eq 0 ]; then 32 32 make 33 33 else -
issm/trunk-jpl/externalpackages/mpich2/install-1.3.1-linux64-berg.sh
r13246 r13249 1 1 #!/bin/bash 2 2 set -eu 3 4 #Get number of cpus5 NUMCPUS=$1;6 3 7 4 #version of mpich2 … … 41 38 42 39 #Compile mpich2 43 if [ -z $NUMCPUS];40 if [ $# -eq 0 ]; 44 41 then 45 42 make 46 43 else 47 make -j $ NUMCPUS44 make -j $1 48 45 fi 49 46 make install -
issm/trunk-jpl/externalpackages/mpich2/install-1.4-linux64.sh
r13246 r13249 28 28 29 29 #Compile mpich2 30 if [ -z $1]; then30 if [ $# -eq 0 ]; then 31 31 make 32 32 else -
issm/trunk-jpl/externalpackages/mpich2/install-1.4-macosx32.sh
r13246 r13249 30 30 31 31 #Compile mpich2 32 if [ -z $1]; then32 if [ $# -eq 0 ]; then 33 33 make 34 34 else -
issm/trunk-jpl/externalpackages/mpich2/install-1.4-macosx64.sh
r13246 r13249 30 30 31 31 #Compile mpich2 32 if [ -z $1]; then32 if [ $# -eq 0 ]; then 33 33 make 34 34 else -
issm/trunk-jpl/externalpackages/netcdf/install-4.0.sh
r13246 r13249 20 20 cd src 21 21 ./configure --prefix="$ISSM_DIR/externalpackages/netcdf/install" 22 if [ -z $1]; then22 if [ $# -eq 0 ]; then 23 23 make 24 24 else -
issm/trunk-jpl/externalpackages/netcdf/install-4.2.sh
r13246 r13249 23 23 --prefix="$ISSM_DIR/externalpackages/netcdf/install" \ 24 24 --disable-doxygen 25 if [ -z $1]; then25 if [ $# -eq 0 ]; then 26 26 make 27 27 else -
issm/trunk-jpl/externalpackages/octave/install.sh
r13246 r13249 22 22 --disable-readline 23 23 24 if [ -z $NUMCPUS];24 if [ $# -eq 0 ]; 25 25 then 26 26 make 27 27 make install 28 28 else 29 make -j $ NUMCPUS30 make -j $ NUMCPUSinstall29 make -j $1 30 make -j $1 install 31 31 fi -
issm/trunk-jpl/externalpackages/oofem/install.sh
r13246 r13249 24 24 #Compile oofem 25 25 cd targets/oofem-2.0 26 if [ -z $1]; then26 if [ $# -eq 0 ]; then 27 27 make 28 28 else -
issm/trunk-jpl/externalpackages/python/install-2.7.2-linux64.sh
r13246 r13249 24 24 --enable-shared 25 25 26 if [ -z $1]; then26 if [ $# -eq 0 ]; then 27 27 make 28 28 else -
issm/trunk-jpl/externalpackages/python/install-2.7.2-macosx-lion.sh
r13246 r13249 22 22 ./configure \ 23 23 --enable-framework="$ISSM_DIR/externalpackages/python/install/Library/Frameworks" 24 if [ -z $1]; then24 if [ $# -eq 0 ]; then 25 25 make 26 26 else -
issm/trunk-jpl/externalpackages/python/install-2.7.2-macosx-snowleopard.sh
r13246 r13249 26 26 27 27 #make 28 if [ -z $1]; then28 if [ $# -eq 0 ]; then 29 29 make 30 30 else -
issm/trunk-jpl/externalpackages/python/install-3.2.2-linux64.sh
r13246 r13249 24 24 --enable-shared 25 25 26 if [ -z $1]; then26 if [ $# -eq 0 ]; then 27 27 make 28 28 else -
issm/trunk-jpl/externalpackages/python/install-3.2.2-macosx-lion.sh
r13246 r13249 27 27 28 28 #make 29 if [ -z $1]; then29 if [ $# -eq 0 ]; then 30 30 make 31 31 else -
issm/trunk-jpl/externalpackages/python/install-3.2.2-macosx-snowleopard.sh
r13246 r13249 27 27 28 28 #make 29 if [ -z $1]; then29 if [ $# -eq 0 ]; then 30 30 make 31 31 else -
issm/trunk-jpl/externalpackages/rose/install.sh
r13246 r13249 23 23 --srcdir=$ISSM_DIR/externalpackages/rose/source 24 24 25 if [ -z $1]; then25 if [ $# -eq 0 ]; then 26 26 make 27 27 else -
issm/trunk-jpl/externalpackages/shapelib/install.sh
r13246 r13249 26 26 # Build shapelib and run self-tests 27 27 cd src 28 if [ -z $1]; then28 if [ $# -eq 0 ]; then 29 29 make 30 30 else -
issm/trunk-jpl/externalpackages/slepc/install.sh
r13246 r13249 19 19 cd install 20 20 ./config/configure.py 21 if [ -z $1]; then21 if [ $# -eq 0 ]; then 22 22 make 23 23 else -
issm/trunk-jpl/externalpackages/sqlite/install.sh
r13246 r13249 23 23 24 24 #Compile and install sqlite-autoconf 25 if [ -z $1]; then25 if [ $# -eq 0 ]; then 26 26 make 27 27 else -
issm/trunk-jpl/externalpackages/svn/install.sh
r13246 r13249 26 26 27 27 #Compile and install subversion 28 if [ -z $1]; then28 if [ $# -eq 0 ]; then 29 29 make 30 30 else -
issm/trunk-jpl/externalpackages/swig/install.sh
r13246 r13249 30 30 31 31 #Compile and install gdal 32 if [ -z $1]; then32 if [ $# -eq 0 ]; then 33 33 make 34 34 else -
issm/trunk-jpl/externalpackages/tcl/install.sh
r13246 r13249 29 29 then 30 30 ./configure --prefix=$ISSM_DIR/externalpackages/tcl/install 31 if [ -z $1]; then31 if [ $# -eq 0 ]; then 32 32 make 33 33 else … … 41 41 then 42 42 sudo ./configure 43 if [ -z $1]; then43 if [ $# -eq 0 ]; then 44 44 sudo make 45 45 else -
issm/trunk-jpl/externalpackages/tclx/install.sh
r13246 r13249 25 25 26 26 #Compile and install tclx 27 if [ -z $1]; then27 if [ $# -eq 0 ]; then 28 28 make 29 29 else -
issm/trunk-jpl/externalpackages/tk/install.sh
r13246 r13249 26 26 then 27 27 ./configure --prefix=$ISSM_DIR/externalpackages/tk/install 28 if [ -z $1]; then28 if [ $# -eq 0 ]; then 29 29 make 30 30 else … … 38 38 then 39 39 sudo ./configure 40 if [ -z $1]; then40 if [ $# -eq 0 ]; then 41 41 sudo make 42 42 else
Note:
See TracChangeset
for help on using the changeset viewer.