Humboldt-Universität zu Berlin - Mathematisch-Naturwissenschaftliche Fakultät - Systemanalyse

ODEMx auf marzahn.txt

# auf marzahn.informatik.hu-berlin.de per ssh einloggen und lokales installationsverzeichnis erstellen
cd ~
mkdir local

# cmake uebersetzen und installieren
cd ~
get http://www.cmake.org/files/v2.8/cmake-2.8.6.tar.gz
tar xfvz cmake-2.8.6.tar.gz
cd cmake-2.8.6/
./bootstrap --prefix=~/local/;make;make install

# odemx entpacken
cd ~
wget https://www.informatik.hu-berlin.de/forschung/gebiete/sam/Lehre/tools/odemx/odemx-head-2013.04.19-contrib-incl.tar.gz
tar xvzf odemx-head-2013.04.19-contrib-incl.tar.gz

# build verzeichnis erstellen
mkdir odemx-build

# externe bibliothkeen uebersetzen und installieren
cd odemx-head-2013.04.19-contrib-incl/external/contrib
./install_contrib.sh ../../../local

# odemx uebersetzen und installieren als debug
cd ~
cd odemx-build/
~/local/bin/cmake -DGSL_INSTALL_PREFIX=~/local/ -DPOCO_INSTALL_PREFIX=~/local/ -DINSTALL_PREFIX=~/local/ -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug ../odemx-head-2013.04.19-contrib-incl/
make && make install

# odemx uebersetzen und installieren als release
~/local/bin/cmake -DGSL_INSTALL_PREFIX=~/local/ -DPOCO_INSTALL_PREFIX=~/local/ -DINSTALL_PREFIX=~/local/ -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release ../odemx-head-2013.04.19-contrib-incl/
make && make install