# Prepare location
mkdir unison
cd unison
# Fetch files
git clone git://github.com/pgiblox/ingen.git
git clone git://github.com/pgiblox/unison.git -b ingen_integration
# Note: You will need to also have Dave Robillard's Sord, Serd,
# SUIL Raul, and LILV libraries and headers installed on your
# system, and they need to be fairly recent. If you already have
# these dependencies installed, then skip to [Building Ingen] below.
# Building drobilla's libs (The easy way)
svn co http://svn.drobilla.net/lad/trunk drobillad
cd drobillad
./waf configure
./waf
sudo ./waf install
# Building Ingen
cd ../ingen
./waf configure --debug --no-http --no-osc --no-gui --qt-client
./waf
sudo ./waf install
# Building UnisonStudio
cd ../unison
mkdir build target
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=../target
make
make install
# Running UnisonStudio
../target/bin/unisonstudio