annotate 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
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@408 7 sudo apt-get -y install libsndfile1-dev libcairo-dev subversion scons build-essential libboost-dev
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
tomwalters@408 13 Building Python bindings
tomwalters@408 14
tomwalters@408 15 {{{
tomwalters@408 16 #!/bin/bash
tomwalters@408 17 sudo apt-get -y install python-dev swig
tomwalters@408 18 cd ~/aimc-read-only
tomwalters@408 19 scripts/build_python_module.sh
tomwalters@408 20 }}}
tomwalters@408 21
tomwalters@408 22 Building documentation
tomwalters@408 23
tomwalters@408 24 {{{
tomwalters@408 25 #!/bin/bash
tomwalters@409 26 sudo apt-get -y install doxygen graphviz
tomwalters@408 27 cd ~/aimc-read-only
tomwalters@408 28 doxygen doc/Doxyfile
tomwalters@408 29 }}}