Changeset 12895
- Timestamp:
- 08/03/12 11:58:15 (13 years ago)
- Location:
- issm/trunk-jpl/externalpackages
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/externalpackages/matplotlib/install-osx.sh
r12246 r12895 2 2 pythonversion=2.7 3 3 PYTHON=python${pythonversion} 4 5 export GIT_SSL_NO_VERIFY=true 6 export CC="gcc -fPIC" 7 export CXX="g++ -fPIC" 8 export F77="gfortran -fPIC" 9 export FC="gfortran -fPIC" 10 export FFLAGS=-ff2c 11 4 12 5 13 git clone https://github.com/matplotlib/matplotlib … … 7 15 mkdir deps 8 16 cd src 17 exit 9 18 make -f make.osx PREFIX=$ISSM_DIR/externalpackages/matplotlib/deps PYVERSION=$pythonversion fetch deps mpl_install_std 10 19 ${PYTHON} -c "import matplotlib; print 'Installed matplotlib', matplotlib.__version__, matplotlib.__file__" -
issm/trunk-jpl/externalpackages/matplotlib/install.sh
r12143 r12895 1 1 #/bin/bash 2 pythonversion=2.7 3 PYTHON=python${pythonversion} 4 5 export GIT_SSL_NO_VERIFY=true 6 export CC="gcc -fPIC " 7 export CXX="g++ -fPIC -L$ISSM_DIR/externalpackages/tcl/install/lib" 8 export F77="gfortran -fPIC" 9 export FC="gfortran -fPIC" 10 export FFLAGS=-ff2c 11 2 12 3 13 git clone https://github.com/matplotlib/matplotlib 4 14 mv matplotlib src 5 15 cd src 6 python setup.py build 7 python setup.py install 16 python setup.py build 17 python setup.py install -
issm/trunk-jpl/externalpackages/tcl/install.sh
r12719 r12895 1 1 #!/bin/bash 2 3 sudochoice=0; 2 4 3 5 #Some cleanup … … 20 22 ver="8.4.12" 21 23 22 cd src 23 make -C ./macosx install INSTALL_ROOT="$ISSM_DIR/externalpackages/tcl/install" 24 cd src/unix 25 26 #User mode: 27 if [[ $sudochoice == "0" ]]; 28 then 29 ./configure --prefix=$ISSM_DIR/externalpackages/tcl/install 30 if [ -z $1 ]; then 31 make 32 else 33 make -j $1 34 fi 35 make install 36 fi 37 38 #sudo mode: 39 if [[ $sudochoice == "1" ]]; 40 then 41 sudo ./configure 42 if [ -z $1 ]; then 43 sudo make 44 else 45 sudo make -j $1 46 fi 47 sudo make install 48 fi -
issm/trunk-jpl/externalpackages/tk
-
Property svn:ignore
set to
install
src
*.gz
-
Property svn:ignore
set to
Note:
See TracChangeset
for help on using the changeset viewer.