You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make sure, you have installed the required build tools and libraries (see
section "Prerequisites" below) and then clone this repository (including
sub-modules) and simply run make in the project's root directory:
$ git clone --recursive https://github.com/SpotlightKid/midiomatic.git
$ cd midiomatic
$ make
Installation
To install the plugins system-wide, run (root priviledges may be required):
make install
The usual PREFIX and DESTDIR makefile variables are honoured to change
the prefix directory (default: /usr/local) and the installation destination
(for distribution packaging).
You can also set the installation directory for each plugin format with a
dedicated makefile variable.
LV2: LV2_DIR (<prefix>/lib/lv2)
VST2: VST_DIR (<prefix>/lib/vst)
Example:
make DESTDIR=/tmp/build-root PREFIX=/usr VST_DIR=/usr/lib/lxvst install
Use make's -n option to see where the plugins would be installed without
actually installing them.
To install the plugins under your user's home directory, run:
make install-user
No special makefile variables are used in this case.
Prerequisites
Git
The GCC C++ compiler and the usual associated software build tools
(make, etc.).
Users of Debian / Ubuntu Linux should install the build-essential
meta package to get these, Arch Linux users the base-devel package
group.