Skip to content

Instantly share code, notes, and snippets.

@kindlychung
Forked from anonymous/build_lmms.sh
Created October 25, 2017 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kindlychung/f8d8aa7f7e8746185743a7d4346456c6 to your computer and use it in GitHub Desktop.
Save kindlychung/f8d8aa7f7e8746185743a7d4346456c6 to your computer and use it in GitHub Desktop.
How to build lmms on ubuntu 17.10
git clone https://github.com/LMMS/lmms
cd lmms/
git checkout master
mkdir build target
cd build
sudo apt install libasound2-dev
sudo apt install libsndio-dev
sudo apt install libsndio-dev
sudo apt-get install libfftw3-dev
sudo apt-get install libfltk1.3-dev
sudo apt install libwine-dev
sudo apt install libsamplerate0-dev
sudo apt-get install gcc-7-multilib g++-7-multilib
sudo apt-get install libwine-dev:i386 wine32-tools:i386
rm -rf * && cmake -DCMAKE_INSTALL_PREFIX=../target/ -DWANT_QT5=ON ..
make -j4
./lmms
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment