aboutsummaryrefslogtreecommitdiffstats
path: root/core.lv2/lv2.ttl
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-03-01 17:25:26 +0000
committerDavid Robillard <d@drobilla.net>2011-03-01 17:25:26 +0000
commitdfee84e5006aa5ff131c1ebc0b6cce50c1276b8f (patch)
tree788d0112bdc4f7c2f962aeeed19d502d6bedec15 /core.lv2/lv2.ttl
parentdcc2cf3b1754304a5bb269b6dda9b06c89708e42 (diff)
downloadlv2-dfee84e5006aa5ff131c1ebc0b6cce50c1276b8f.tar.xz
Add lv2:binary (previously used, but undefined).
Diffstat (limited to 'core.lv2/lv2.ttl')
-rw-r--r--core.lv2/lv2.ttl13
1 files changed, 13 insertions, 0 deletions
diff --git a/core.lv2/lv2.ttl b/core.lv2/lv2.ttl
index 68c8891..e3f16da 100644
--- a/core.lv2/lv2.ttl
+++ b/core.lv2/lv2.ttl
@@ -345,6 +345,19 @@ used in a similar way to represent a 'minor version', and NOT as a major
version to distinguish incompatible objects (use the URI for that).
""" .
+lv2:binary a rdf:Property ;
+ rdfs:domain lv2:Resource ;
+ rdfs:range rdfs:Resource ;
+ rdfs:label "binary" ;
+ rdfs:comment """
+The binary of an LV2 resource. The value of this property must be a URI to
+a shared library object. The actual type of this object is system specific.
+
+This is a required property of an lv2:Plugin. The lv2:binary of an lv2:Plugin
+is the shared object containing the lv2_descriptor function which can be used
+to access the descriptor for that plugin.
+""" .
+
####################################
## Documentation ##