= Installation = == Quick Install == Ariba currently build on Linux systems. Our reference platform is Ubuntu 8.04 with the gcc compiler version 4.2.4. Download the latest Ariba package from the the [https://projekte.tm.uka.de/trac/spovnet-base/downloads download site]: {{{ > wget https://projekte.tm.uni-karlsruhe.de/download/ariba/releases/ariba-x.x.x.tar.gz }}} Extract the archive and change into the project directory: {{{ > tar xfz ./ariba-x.x.x.tar.gz > cd ariba-x.x.x.tar.gz }}} Now, configure, compile, and install Ariba: {{{ > ./configure > make > make install }}} In case you don't want to install Ariba into your system but to a local place, do: {{{ > mkdir ariba > ./configure --prefix=/home/user/ariba/ > make > make install }}} == Prequisites == Ariba depends on some libraries that may not be installed on your system: [http://www.boost.org Boost], [http://logging.apache.org/log4cxx Log4cxx], [http://gmplib.org GMP], and optionally [http://www.stack.nl/~dimitri/doxygen/ Doxygen]. Furthermore, you need default development tools that are most likely already installed on your system (gcc, autoconf, automake, aclocal, libtool, ...). If you have root privileges on your system you can easily install the needed libraries using apt-get: {{{ > apt-get install }}} {{{ }}} {{{ }}}