summaryrefslogtreecommitdiffstats
path: root/bundles/ingen.lv2
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-04-26 23:43:59 +0000
committerDavid Robillard <d@drobilla.net>2012-04-26 23:43:59 +0000
commit4e3a82b0de3646e74e40695d2537bb5071682318 (patch)
treea7d5acca4a40870620413ee96ecade115ac07604 /bundles/ingen.lv2
parentb9de87b822a4fd61ffd4f0c899f7b8f81955c3f1 (diff)
downloadingen-4e3a82b0de3646e74e40695d2537bb5071682318.tar.gz
ingen-4e3a82b0de3646e74e40695d2537bb5071682318.tar.bz2
ingen-4e3a82b0de3646e74e40695d2537bb5071682318.zip
Save properties with pretty numbers so normal LV2 tools can read patches.
Fix running as a plugin. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4279 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'bundles/ingen.lv2')
-rw-r--r--bundles/ingen.lv2/ingen.ttl5
-rw-r--r--bundles/ingen.lv2/manifest.ttl13
2 files changed, 16 insertions, 2 deletions
diff --git a/bundles/ingen.lv2/ingen.ttl b/bundles/ingen.lv2/ingen.ttl
index 2a1c0dce..d581e458 100644
--- a/bundles/ingen.lv2/ingen.ttl
+++ b/bundles/ingen.lv2/ingen.ttl
@@ -1,11 +1,12 @@
-@prefix ingen: <http://drobilla.net/ns/ingen#> .
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
+@prefix ingen: <http://drobilla.net/ns/ingen#> .
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix ui: <http://lv2plug.in/ns/extensions/ui#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
-@prefix owl: <http://www.w3.org/2002/07/owl#> .
<http://drobilla.net/drobilla#me>
a foaf:Person ;
diff --git a/bundles/ingen.lv2/manifest.ttl b/bundles/ingen.lv2/manifest.ttl
new file mode 100644
index 00000000..ea2f62fe
--- /dev/null
+++ b/bundles/ingen.lv2/manifest.ttl
@@ -0,0 +1,13 @@
+@prefix ingen: <http://drobilla.net/ns/ingen#> .
+@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#> .
+
+ingen:
+ a owl:Ontology ;
+ rdfs:seeAlso <ingen.ttl> .
+
+ingen:PatchUIGtk2
+ a ui:GtkUI ;
+ ui:binary <libingen_gui_lv2.so> ;
+ rdfs:comment "The Ingen patcher interface." .