diff options
author | David Robillard <d@drobilla.net> | 2013-12-27 19:47:45 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2013-12-27 19:47:45 +0000 |
commit | 24a2add27496e43e99dbc259ca7c26fbd5e43cff (patch) | |
tree | 2d7ea5d964023dc942e16bda9f59999e21f861de /bundles | |
parent | 1a46b62a6b4c23ab9465d0938c5015b1ab2b493b (diff) | |
download | ingen-24a2add27496e43e99dbc259ca7c26fbd5e43cff.tar.gz ingen-24a2add27496e43e99dbc259ca7c26fbd5e43cff.tar.bz2 ingen-24a2add27496e43e99dbc259ca7c26fbd5e43cff.zip |
Implement lv2:prototype.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5219 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'bundles')
-rw-r--r-- | bundles/ingen.lv2/manifest.ttl | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/bundles/ingen.lv2/manifest.ttl b/bundles/ingen.lv2/manifest.ttl index b7f6163c..12d3621a 100644 --- a/bundles/ingen.lv2/manifest.ttl +++ b/bundles/ingen.lv2/manifest.ttl @@ -1,5 +1,6 @@ @prefix ingen: <http://drobilla.net/ns/ingen#> . @prefix internals: <http://drobilla.net/ns/ingen-internals#> . +@prefix lv2: <http://lv2plug.in/ns/lv2core#> . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix ui: <http://lv2plug.in/ns/extensions/ui#> . @@ -8,6 +9,18 @@ ingen: a owl:Ontology ; rdfs:seeAlso <ingen.ttl> . +ingen:GraphPrototype + a lv2:PluginBase ; + lv2:binary <libingen_lv2.so> ; + rdfs:comment """Template for all Ingen graphs. + +Saved Ingen graphs always set this as their lv2:prototype. When Ingen is +installed, a bundle is installed which included the Ingen LV2 binary and a +description of ingen:GraphPrototype which links to it. This way, Ingen graphs +can be loaded by LV2 hosts without including binaries or symbolic links in +saved Ingen bundles. +""" . + ingen:GraphUIGtk2 a ui:GtkUI ; ui:binary <libingen_gui_lv2.so> ; @@ -15,16 +28,16 @@ ingen:GraphUIGtk2 internals:Controller a ingen:Plugin ; - rdfs:seeAlso <internals.ttl> . + rdfs:seeAlso <internals.ttl> . internals:Trigger a ingen:Plugin ; - rdfs:seeAlso <internals.ttl> . + rdfs:seeAlso <internals.ttl> . internals:Note a ingen:Plugin ; - rdfs:seeAlso <internals.ttl> . + rdfs:seeAlso <internals.ttl> . internals:Transport a ingen:Plugin ; - rdfs:seeAlso <internals.ttl> . + rdfs:seeAlso <internals.ttl> . |