Mercurial > hg > aimc
annotate wiki/BuildingOnUbuntu.wiki @ 404:ae015c67d1e1
Created wiki page through web user interface.
author | tomwalters |
---|---|
date | Tue, 19 Oct 2010 07:10:17 +0000 |
parents | |
children | 58d61c6fc41f |
rev | line source |
---|---|
tomwalters@404 | 1 #summary Quick script to get the sources, install the dependencies and build AIM-C on Ubuntu |
tomwalters@404 | 2 |
tomwalters@404 | 3 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 | 4 |
tomwalters@404 | 5 {{{ |
tomwalters@404 | 6 #!/bin/bash |
tomwalters@404 | 7 sudo apt-get -y install libsndfile1-dev libcairo-dev subversion scons build-essential libboost-dev doxygen |
tomwalters@404 | 8 svn checkout http://aimc.googlecode.com/svn/trunk/ aimc-read-only |
tomwalters@404 | 9 cd aimc-read-only |
tomwalters@404 | 10 scons |
tomwalters@404 | 11 }}} |
tomwalters@404 | 12 |