Skip to content
macpod edited this page Dec 29, 2012 · 6 revisions

These instructions were based on a relatively fresh install of Mint 14.

Install prerequisite software:

The following are needed to download the code:

sudo apt-get install git

The following are needed to get cmake to finish:

sudo apt-get install cmake gcc libjack-jackd2-dev python libqt4-dev libavcodec-dev ffmpeg libswscale-dev freeglut3-dev libasound2-dev libncurses5-dev yasm python-dev cython libxmu-dev libxi-dev

The following are needed to allow everything to compile.. hmm looks like the cmake scripts should be updated to look for these dependencies:

sudo apt-get install libavformat-dev libavdevice-dev

Download:

cd ~/Desktop

git clone <open lase url or fork of choice>

For marcan's repo: git clone https://github.com/marcan/openlase.git

Compile:

cd openlase

mkdir build && cd build

cmake ..

Scroll through the cmake output and make sure it found everything it was looking for. Once verified run the following.:

make

You should once again scroll through the output to verify everything built.

Clone this wiki locally