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@404: sudo apt-get -y install libsndfile1-dev libcairo-dev subversion scons build-essential libboost-dev doxygen 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: