view wiki/BuildingOnUbuntu.wiki @ 706:f8e90b5d85fd tip

Delete CARFAC code from this repository. It has been moved to https://github.com/google/carfac Please email me with your github username to get access. I've also created a new mailing list to discuss CARFAC development: https://groups.google.com/forum/#!forum/carfac-dev
author ronw@google.com
date Thu, 18 Jul 2013 20:56:51 +0000
parents 1d0f39b04954
children
line wrap: on
line source
#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
svn checkout http://aimc.googlecode.com/svn/trunk/ aimc-read-only
cd aimc-read-only
scons
}}}

Building Python bindings

{{{
#!/bin/bash
sudo apt-get -y install python-dev swig
cd ~/aimc-read-only
scripts/build_python_module.sh
}}}

Building documentation

{{{
#!/bin/bash
sudo apt-get -y install doxygen graphviz
cd ~/aimc-read-only
doxygen doc/Doxyfile
}}}