summaryrefslogtreecommitdiffstats
path: root/test/lv2
diff options
context:
space:
mode:
Diffstat (limited to 'test/lv2')
-rw-r--r--test/lv2/core.lv2/lv2core.ttl30
-rw-r--r--test/lv2/core.lv2/manifest.ttl9
-rw-r--r--test/lv2/core.lv2/meson.build11
3 files changed, 50 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..0d02ae1
--- /dev/null
+++ b/test/lv2/core.lv2/meson.build
@@ -0,0 +1,11 @@
+# Copyright 2021-2022 David Robillard <d@drobilla.net>
+# SPDX-License-Identifier: 0BSD OR ISC
+
+ttl_files = files(
+ 'lv2core.ttl',
+ 'manifest.ttl',
+)
+
+foreach file : ttl_files
+ configure_file(copy: true, input: file, output: '@PLAINNAME@')
+endforeach