All pastes #2067781 Raw Edit

Someone

public shellscript v1 · immutable
#2067781 ·published 2011-05-23 17:30 UTC
rendered paste body
# Prepare locationmkdir unisoncd unison# Fetch filesgit clone git://github.com/pgiblox/ingen.gitgit clone git://github.com/pgiblox/unison.git -b next# "Install" experimental LV2 extensions.  This is a temporary fix.# Instad of /usr/include you _might_ be able to get away with another path# such as /usr/local/includsudo cp unison/lv2 /usr/include# 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 drobilladcd drobilladfor p in raul serd sord suil lilv; do  cd $p  ./waf configure  ./waf  sudo ./waf install  cd ..done# Building Ingen (pgib's fork)cd ../ingen./waf configure --debug --no-http --no-osc --no-gui --qt-client./wafsudo ./waf install# Building UnisonStudiocd ../unisonmkdir build targetcd buildcmake .. -DCMAKE_INSTALL_PREFIX=../targetmakemake install# Running UnisonStudio../target/bin/unisonstudio