Last active
March 19, 2017 10:48
-
-
Save trivoallan/dadcef837637eeba53302b1912362d2a to your computer and use it in GitHub Desktop.
Ardour 5.8 installation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
git clone git://git.ardour.org/ardour/ardour.git | |
cd ardour | |
git checkout 5.8 | |
sudo apt-get install \ | |
libboost-all-dev \ | |
libglibmm-2.4-dev \ | |
libcurl3-dev \ | |
libarchive-dev \ | |
liblo-dev \ | |
libtag1-dev \ | |
vamp-plugin-sdk \ | |
librubberband-dev \ | |
clang \ | |
libaubio-dev \ | |
libxml2-dev \ | |
libcppunit-dev \ | |
libusb-1.0-0-dev \ | |
libcwiid-dev \ | |
libpangomm-1.4-dev \ | |
libjack-dev \ | |
liblrdf-dev \ | |
libserd-dev \ | |
libsord-dev \ | |
libsratom-dev \ | |
liblilv-dev \ | |
libgtkmm-2.4-dev | |
./waf configure | |
./waf | |
sudo ./waf install |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
git clone git://git.ardour.org/ardour/ardour.git | |
cd ardour | |
git checkout 5.8 | |
sudo apt-get install \ | |
clang \ | |
fftw3-dev \ | |
libarchive-dev \ | |
libaubio-dev \ | |
libboost-all-dev \ | |
libcppunit-dev \ | |
libcwiid-dev \ | |
libglibmm-2.4-dev \ | |
libgtkmm-2.4-dev \ | |
libjack-dev \ | |
liblilv-dev \ | |
liblo-dev \ | |
liblrdf-dev \ | |
libpangomm-1.4-dev \ | |
librubberband-dev \ | |
libsamplerate0-dev \ | |
libserd-dev \ | |
libsord-dev \ | |
libsratom-dev \ | |
libtag1-dev \ | |
libudev-dev \ | |
libusb-1.0-0-dev \ | |
libxml2-dev \ | |
vamp-plugin-sdk | |
./waf configure | |
./waf | |
sudo ./waf install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment