Skip to content

Downloading building installing

Harry van Haaren edited this page Feb 13, 2016 · 4 revisions

Preparing your system:

You're going to need a some tools. Please install (with -dev or -devel packages):

  • build-essential
  • git
  • jack
  • sndfile
  • gtkmm
  • fluidsynth
  • libconfig
  • lilv
  • lv2-core
  • ladspa header
  • suil

Getting the source files:

Do this in a terminal, to create a folder, grab the source and checkout the master branch:

mkdir ~/luppp/
cd ~/luppp
git clone git://github.com/harryhaaren/Luppp.git
git checkout master

Compiling & dealing with errors:

In a terminal enter the following:

mkdir build
cd build
cmake ..

This will check if you system has all needed dependencies. If this fails, please check the issue tracker if this error has been encountered before: https://github.com/harryhaaren/Luppp/issues If you have a new problem, please open a new issue. I'll be emailed, and get back to you ASAP.

Now type the following to actually compile the source code into a program:

make

Running Luppp

To run the program there's a handy little script, so in the main folder just

./run.sh

and the Luppp user interface should appear!