Skip to content

Commit 98479fd

Browse files
committed
Fix carla.lv2 ttl validation
Signed-off-by: falkTX <[email protected]>
1 parent 73ddea2 commit 98479fd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

source/plugin/carla-lv2-export.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ static void writeManifestFile(PluginListManager& plm, const uint32_t microVersio
122122
text += "@prefix lv2: <" LV2_CORE_PREFIX "> .\n";
123123
text += "@prefix mod: <http://moddevices.com/ns/mod#> .\n";
124124
text += "@prefix opts: <" LV2_OPTIONS_PREFIX "> .\n";
125+
text += "@prefix owl: <http://www.w3.org/2002/07/owl#> .\n";
125126
text += "@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .\n";
126127
text += "@prefix ui: <" LV2_UI_PREFIX "> .\n";
127128
text += "\n";
@@ -130,7 +131,7 @@ static void writeManifestFile(PluginListManager& plm, const uint32_t microVersio
130131
// Project
131132

132133
text += "<https://kx.studio/carla>\n";
133-
text += " a owl:Ontology, lv2:Project, doap:Project ;\n";
134+
text += " a owl:Ontology, doap:Project ;\n";
134135
text += " doap:homepage <https://kx.studio/carla> ;\n";
135136
text += " doap:maintainer [\n";
136137
text += " foaf:homepage <https://falktx.com/> ;\n";

0 commit comments

Comments
 (0)