Created
December 16, 2021 18:52
-
-
Save ExperiBass/f6713f7d0911fc822528a985ace27ca4 to your computer and use it in GitHub Desktop.
This file contains 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
alias getlmms="git clone --recurse-submodules -b master https://github.com/lmms/lmms && cd ./lmms && mkdir build" | |
alias buildlmms='cmake .. -DCMAKE_INSTALL_PREFIX=../target/ -Wno-dev -DWANT_CARLA=ON -DWANT_VST=ON -DCMAKE_PREFIX_PATH=/usr/lib/wine && make -j14' | |
alias updatelmms="git remote update && git pull && git submodule update --init --recursive" | |
alias uablmms="updatelmms && cd ./build && buildlmms" | |
alias fullmms="getlmms && buildlmms" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment