Add files via upload
Added dependencies
This commit is contained in:
parent
368948b360
commit
de0ecf7e13
5 changed files with 34 additions and 0 deletions
BIN
Dependencies/GeneNet.tar.gz
vendored
Normal file
BIN
Dependencies/GeneNet.tar.gz
vendored
Normal file
Binary file not shown.
BIN
Dependencies/gsl-latest.tar.gz
vendored
Normal file
BIN
Dependencies/gsl-latest.tar.gz
vendored
Normal file
Binary file not shown.
BIN
Dependencies/libSBML-5.15.2-core-plus-packages-src.tar.gz
vendored
Normal file
BIN
Dependencies/libSBML-5.15.2-core-plus-packages-src.tar.gz
vendored
Normal file
Binary file not shown.
34
Dependencies/newbuild.sh
vendored
Normal file
34
Dependencies/newbuild.sh
vendored
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
#!/bin/bash
|
||||
|
||||
BUILD_DIR=$PWD
|
||||
ROOT=/iBioSim
|
||||
|
||||
tar -xf libSBML-5.15.2-core-plus-packages-src.tar.gz
|
||||
tar -xf gsl-latest.tar.gz
|
||||
tar -xf GeneNet.tar.gz
|
||||
tar -xf reb2sac.tar.gz
|
||||
|
||||
# Install gsl
|
||||
cd ${BUILD_DIR}/gsl-2.4
|
||||
./configure --prefix=${ROOT} --quiet
|
||||
make --quiet
|
||||
make install --quiet
|
||||
|
||||
# Install libsbml
|
||||
cd ${BUILD_DIR}/libSBML-5.15.2-Source
|
||||
./configure --prefix=${ROOT} --with-java --enable-comp --quiet
|
||||
make --quiet; make --quiet
|
||||
make install --quiet
|
||||
|
||||
# Install GeneNet
|
||||
cd ${BUILD_DIR}/GeneNet
|
||||
make --quiet
|
||||
cp bin/GeneNet ${ROOT}/bin/GeneNet.linux64
|
||||
cp ${ROOT}/bin/GeneNet.linux64 ${ROOT}/bin/GeneNet
|
||||
|
||||
|
||||
# Install reb2sac
|
||||
cd ${BUILD_DIR}/reb2sac
|
||||
CFLAGS="-I${ROOT}/include -O0 -g3 -DNAME_FOR_ID" LDFLAGS="-L${ROOT}/lib -lm" ./configure --prefix=${ROOT}/ && \
|
||||
env WANT_AUTOCONF_2_5="1" WANT_AUTOMAKE_1_6="1" make -k -j1 install
|
||||
cp ${ROOT}/bin/reb2sac ${ROOT}/bin/reb2sac.linux64
|
||||
BIN
Dependencies/reb2sac.tar.gz
vendored
Normal file
BIN
Dependencies/reb2sac.tar.gz
vendored
Normal file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue