# HG changeset patch # User tomwalters # Date 1287472217 0 # Node ID ae015c67d1e1f506ea7c3fbfed007e1008daabfa # Parent 4bf09e7d8e15c7ba2b14df2ff1d89387e6d82c4e Created wiki page through web user interface. diff -r 4bf09e7d8e15 -r ae015c67d1e1 wiki/BuildingOnUbuntu.wiki --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/wiki/BuildingOnUbuntu.wiki Tue Oct 19 07:10:17 2010 +0000 @@ -0,0 +1,12 @@ +#summary Quick script to get the sources, install the dependencies and build AIM-C on Ubuntu + +Quick script to get the sources, install the dependencies and build AIM-C on Ubuntu. Tested on a clean install of Ubuntu 10.10. + +{{{ +#!/bin/bash +sudo apt-get -y install libsndfile1-dev libcairo-dev subversion scons build-essential libboost-dev doxygen +svn checkout http://aimc.googlecode.com/svn/trunk/ aimc-read-only +cd aimc-read-only +scons +}}} +