From 1eccbe4355685b322194df72b5de2382d5290b3b Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 7 Jul 2022 18:59:32 -0400 Subject: Rearrange source tree to be directly usable by dependants This allows the LV2 source distribution to be used as an include path for compilers and an LV2_PATH for applications, at the expense of self-contained bundles. That's a nice idea, but it made LV2 itself weird and annoying to depend on. This rearranges things so that directories in the source tree correspond more closely to installation directories. To make this possible, the "aux" directory in the documentation output has been changed to "style", to avoid the reserved name "aux" on Windows. --- lv2/presets/presets.ttl | 61 ------------------------------------------------- 1 file changed, 61 deletions(-) delete mode 100644 lv2/presets/presets.ttl (limited to 'lv2/presets/presets.ttl') diff --git a/lv2/presets/presets.ttl b/lv2/presets/presets.ttl deleted file mode 100644 index 60189ea..0000000 --- a/lv2/presets/presets.ttl +++ /dev/null @@ -1,61 +0,0 @@ -@prefix lv2: . -@prefix owl: . -@prefix pset: . -@prefix rdf: . -@prefix rdfs: . -@prefix xsd: . - - - a owl:Ontology ; - rdfs:label "LV2 Presets" ; - rdfs:comment "Presets for LV2 plugins." ; - rdfs:seeAlso ; - owl:imports . - -pset:Bank - a rdfs:Class ; - rdfs:label "Bank" ; - rdfs:subClassOf [ - a owl:Restriction ; - owl:onProperty rdfs:label ; - owl:minCardinality 1 ; - rdfs:comment "A Bank MUST have at least one string rdfs:label." - ] ; - rdfs:comment "A bank of presets." . - -pset:Preset - a rdfs:Class ; - rdfs:subClassOf lv2:PluginBase ; - rdfs:label "Preset" ; - rdfs:comment "A preset for an LV2 plugin." ; - rdfs:subClassOf [ - a owl:Restriction ; - owl:onProperty rdfs:label ; - owl:minCardinality 1 ; - rdfs:comment "A Preset MUST have at least one string rdfs:label." - ] . - -pset:bank - a rdf:Property , - owl:ObjectProperty ; - rdfs:domain pset:Preset ; - rdfs:range pset:Bank ; - rdfs:label "bank" ; - rdfs:comment "The bank this preset belongs to." . - -pset:value - a rdf:Property , - owl:DatatypeProperty , - owl:FunctionalProperty ; - rdfs:domain lv2:PortBase ; - rdfs:label "value" ; - rdfs:comment "The value of a port in a preset." . - -pset:preset - a rdf:Property , - owl:ObjectProperty ; - rdfs:domain lv2:PluginBase ; - rdfs:range pset:Preset ; - rdfs:label "preset" ; - rdfs:comment "The preset currently applied to a plugin instance." . - -- cgit v1.2.1