tomwalters@404: #summary Quick script to get the sources, install the dependencies and build AIM-C on Ubuntu tomwalters@404: tomwalters@404: Quick script to get the sources, install the dependencies and build AIM-C on Ubuntu. Tested on a clean install of Ubuntu 10.10. tomwalters@404: tomwalters@404: {{{ tomwalters@404: #!/bin/bash tomwalters@408: sudo apt-get -y install libsndfile1-dev libcairo-dev subversion scons build-essential libboost-dev tomwalters@404: svn checkout http://aimc.googlecode.com/svn/trunk/ aimc-read-only tomwalters@404: cd aimc-read-only tomwalters@404: scons tomwalters@404: }}} tomwalters@404: tomwalters@408: Building Python bindings tomwalters@408: tomwalters@408: {{{ tomwalters@408: #!/bin/bash tomwalters@408: sudo apt-get -y install python-dev swig tomwalters@408: cd ~/aimc-read-only tomwalters@408: scripts/build_python_module.sh tomwalters@408: }}} tomwalters@408: tomwalters@408: Building documentation tomwalters@408: tomwalters@408: {{{ tomwalters@408: #!/bin/bash tomwalters@409: sudo apt-get -y install doxygen graphviz tomwalters@408: cd ~/aimc-read-only tomwalters@408: doxygen doc/Doxyfile tomwalters@408: }}}