diff options
Diffstat (limited to 'test/lv2')
-rw-r--r-- | test/lv2/core.lv2/lv2core.ttl | 30 | ||||
-rw-r--r-- | test/lv2/core.lv2/manifest.ttl | 9 | ||||
-rw-r--r-- | test/lv2/core.lv2/meson.build | 8 |
3 files changed, 47 insertions, 0 deletions
diff --git a/test/lv2/core.lv2/lv2core.ttl b/test/lv2/core.lv2/lv2core.ttl new file mode 100644 index 0000000..5659487 --- /dev/null +++ b/test/lv2/core.lv2/lv2core.ttl @@ -0,0 +1,30 @@ +@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#> . + +<http://lv2plug.in/ns/lv2core> + a owl:Ontology . + +lv2:PluginBase + a rdfs:Class , + owl:Class ; + rdfs:label "Plugin Base" . + +lv2:Plugin + a rdfs:Class , + owl:Class ; + rdfs:subClassOf lv2:PluginBase ; + rdfs:label "Plugin" . + +lv2:DynamicsPlugin + a rdfs:Class , + owl:Class ; + rdfs:subClassOf lv2:Plugin ; + rdfs:label "Dynamics" . + +lv2:CompressorPlugin + a rdfs:Class , + owl:Class ; + rdfs:subClassOf lv2:DynamicsPlugin ; + rdfs:label "Compressor" . + diff --git a/test/lv2/core.lv2/manifest.ttl b/test/lv2/core.lv2/manifest.ttl new file mode 100644 index 0000000..a77ad71 --- /dev/null +++ b/test/lv2/core.lv2/manifest.ttl @@ -0,0 +1,9 @@ +@prefix doap: <http://usefulinc.com/ns/doap#> . +@prefix lv2: <http://lv2plug.in/ns/lv2core#> . +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . + +<http://lv2plug.in/ns/lv2core> + a lv2:Specification ; + lv2:minorVersion 16 ; + lv2:microVersion 0 ; + rdfs:seeAlso <lv2core.ttl> . diff --git a/test/lv2/core.lv2/meson.build b/test/lv2/core.lv2/meson.build new file mode 100644 index 0000000..f6e08e3 --- /dev/null +++ b/test/lv2/core.lv2/meson.build @@ -0,0 +1,8 @@ +ttl_files = [ + 'lv2core.ttl', + 'manifest.ttl', +] + +foreach f : ttl_files + configure_file(copy: true, input: f, output: f) +endforeach |