aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2020-07-15 18:43:34 +0200
committerHarald Eilertsen <haraldei@anduin.net>2020-07-15 18:43:34 +0200
commitd640cfdd7103f2c7231e4a0f94727dd505efd3fb (patch)
tree1924ef3361b11404151a4889b9750f8b71199ec6
parentafcf2d362e280d41db1e8b8b8b99cd3617120fcc (diff)
downloadairwindows-lv2-port-d640cfdd7103f2c7231e4a0f94727dd505efd3fb.tar.gz
airwindows-lv2-port-d640cfdd7103f2c7231e4a0f94727dd505efd3fb.tar.bz2
airwindows-lv2-port-d640cfdd7103f2c7231e4a0f94727dd505efd3fb.zip
LV2: Fix ttl manifest and plugin description.
It appears the `doap:name` property needs to be in the `manifest.ttl`, so then we move both doap properties there.
-rw-r--r--plugins/LV2/src/Acceleration/Acceleration.ttl7
-rw-r--r--plugins/LV2/src/Acceleration/manifest.ttl.in7
2 files changed, 7 insertions, 7 deletions
diff --git a/plugins/LV2/src/Acceleration/Acceleration.ttl b/plugins/LV2/src/Acceleration/Acceleration.ttl
index fec2952..9560858 100644
--- a/plugins/LV2/src/Acceleration/Acceleration.ttl
+++ b/plugins/LV2/src/Acceleration/Acceleration.ttl
@@ -1,6 +1,5 @@
# Airwindows Acceleration Limiter plugin description
-@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@@ -10,12 +9,10 @@
a lv2:Plugin ,
lv2:LimiterPlugin ;
lv2:project <https://www.airwindows.com> ;
- doap:name "Airwindows Acceleration Limiter" ;
- doap:license <http://opensource.org/licenses/mit> ;
# Unsure what this does, and if the plugin conforms to it.
# Taken from the LV2 sample amp plugin, figure out later.
- lv2optionalFeature lv2:hardRTCapable ;
+ lv2:optionalFeature lv2:hardRTCapable ;
# Define the ports for this plugin.
# Two control ports - limit and dry/wet
@@ -35,7 +32,7 @@
lv2:name "Dry/Wet" ;
lv2:default 1.0 ;
lv2:minimum 0.0 ;
- lc2:maximum 1.0 ;
+ lv2:maximum 1.0 ;
] , [
a lv2:InputPort , lv2:AudioPort ;
lv2:index 2 ;
diff --git a/plugins/LV2/src/Acceleration/manifest.ttl.in b/plugins/LV2/src/Acceleration/manifest.ttl.in
index f4fcbc7..6f00bd4 100644
--- a/plugins/LV2/src/Acceleration/manifest.ttl.in
+++ b/plugins/LV2/src/Acceleration/manifest.ttl.in
@@ -1,9 +1,12 @@
# LV2 Plugin manifest for airwindows Acceleration limiter plugin
+@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
<https://www.airwindows.com/acceleration>
a lv2:Plugin ;
- lv2:binary <acceleration@LIB_EXT@> ;
- rdfs:seeAlso <acceleration.ttl> .
+ doap:name "Airwindows Acceleration Limiter" ;
+ doap:license <http://opensource.org/licenses/mit> ;
+ lv2:binary <Acceleration@CMAKE_SHARED_LIBRARY_SUFFIX@> ;
+ rdfs:seeAlso <Acceleration.ttl> .