Difference between revisions of "How To Build and Deploy LV2 Plugin to MOD Duo"

From MOD Wiki
Jump to navigation Jump to search
m (Alercunha moved page Plugin How To to LV2 Plugin - Quick Start Guide without leaving a redirect)
Line 1: Line 1:
 
== Introduction ==
 
== Introduction ==
  
In order to create a plugin for a MOD Device you'll need the following:
+
In order to have a LV2 plugin running in a MOD Device you'll need the following:
  
 
# Understand the very basics of LV2
 
# Understand the very basics of LV2
# Gather the tools
+
# Get the build tools
 
# Bootstrap your project
 
# Bootstrap your project
 
# Compile it
 
# Compile it
Line 12: Line 12:
 
Let's dive in.
 
Let's dive in.
  
== 1. Basics of LV2 ==
+
== Basics of LV2 ==
  
 
* [http://www.nongnu.org/ll-plugins/lv2pftci/ LV2 programming for the complete idiot]
 
* [http://www.nongnu.org/ll-plugins/lv2pftci/ LV2 programming for the complete idiot]
 
* [http://lv2plug.in/ LV2 Official Site]
 
* [http://lv2plug.in/ LV2 Official Site]
  
== 2. Gather the tools ==
+
== Get the build tools ==
 +
 
 +
A LV2 plugin is just a binary. However to run in a MOD Device it must be compiled for that particular hardware and software (libraries).
 +
This mean you'll have to use a custom compiler called [https://github.com/moddevices/mod-plugin-builder MOD Plugin Builder].

Revision as of 05:09, 4 May 2016

Introduction

In order to have a LV2 plugin running in a MOD Device you'll need the following:

  1. Understand the very basics of LV2
  2. Get the build tools
  3. Bootstrap your project
  4. Compile it
  5. Deploy it
  6. Publish it

Let's dive in.

Basics of LV2

Get the build tools

A LV2 plugin is just a binary. However to run in a MOD Device it must be compiled for that particular hardware and software (libraries). This mean you'll have to use a custom compiler called MOD Plugin Builder.