Add files via upload

Added dependencies
This commit is contained in:
LukasBuecherl 2022-01-18 13:42:29 -07:00 committed by GitHub
parent 368948b360
commit de0ecf7e13
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 34 additions and 0 deletions

BIN
Dependencies/GeneNet.tar.gz vendored Normal file

Binary file not shown.

BIN
Dependencies/gsl-latest.tar.gz vendored Normal file

Binary file not shown.

Binary file not shown.

34
Dependencies/newbuild.sh vendored Normal file
View 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

Binary file not shown.