diff options
Diffstat (limited to 'manifest.ttl')
| -rw-r--r-- | manifest.ttl | 110 | 
1 files changed, 110 insertions, 0 deletions
| diff --git a/manifest.ttl b/manifest.ttl new file mode 100644 index 0000000..61304ed --- /dev/null +++ b/manifest.ttl @@ -0,0 +1,110 @@ +# LV2 Plugin +# Copyright 2016 Bent Bisballe Nyeng <deva@aasimon.org> +# +# Permission to use, copy, modify, and/or distribute this software for any +# purpose with or without fee is hereby granted, provided that the above +# copyright notice and this permission notice appear in all copies. +# +# THIS SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +@prefix doap:   <http://usefulinc.com/ns/doap#> . +@prefix foaf:   <http://xmlns.com/foaf/0.1/> . +@prefix lv2:    <http://lv2plug.in/ns/lv2core#> . +@prefix atom:   <http://lv2plug.in/ns/ext/atom#> . +@prefix ui:     <http://lv2plug.in/ns/extensions/ui#> . +@prefix state:  <http://lv2plug.in/ns/ext/state#> . +@prefix pprops: <http://lv2plug.in/ns/ext/port-props#> . + +@prefix lv2: <http://lv2plug.in/ns/lv2core#> . +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . + +<http://example.org/plugintest#ui> +    a ui:X11UI ; +    lv2:requiredFeature ui:resize ; +    lv2:extensionData ui:resize ; +    lv2:requiredFeature ui:idleInterface ; +    lv2:extensionData ui:idleInterface ; +    ui:binary <plugintest_lv2.so> . + +<http://example.org/plugintest> +	a lv2:Plugin ; +	lv2:binary <plugintest_lv2.so> ; +	a lv2:InstrumentPlugin ; +	doap:name "LV2Test" ; +	ui:ui <http://example.org/plugintest#ui> ; +	doap:maintainer [ +		foaf:name "LV2Test" ; +		foaf:homepage <http://www.example.org/plugintest> ; +	] ; +	doap:license <http://usefulinc.com/doap/licenses/gpl> ; +	doap:license <http://opensource.org/licenses/gpl-3.0> ; +	lv2:optionalFeature <http://lv2plug.in/ns/ext/uri-map> ; +	lv2:optionalFeature <http://lv2plug.in/ns/ext/event> ; +  lv2:extensionData state:interface ; +	lv2:port [ +    a lv2:InputPort, lv2:ControlPort ; +    lv2:index 0 ; +    lv2:symbol "lv2_freewheel" ; +    lv2:name "Freewheel" ; +    lv2:default 0.0 ; +    lv2:minimum 0.0 ; +    lv2:maximum 1.0 ; +    lv2:designation <http://lv2plug.in/ns/lv2core#freeWheeling> ; +    lv2:portProperty lv2:toggled ; +    lv2:portProperty pprops:hasStrictBounds; +  ] , [ +		a lv2:OutputPort, lv2:ControlPort ; +		lv2:designation <http://lv2plug.in/ns/lv2core#latency>; +		lv2:index 1; +		lv2:symbol "latency"; +		lv2:name "Latency"; +		lv2:minimum 0; +		lv2:maximum 192000; +		lv2:portProperty lv2:reportsLatency, lv2:integer; +	] , [ +		a atom:AtomPort , +      lv2:InputPort; +    atom:bufferType atom:Sequence ; +    atom:supports <http://lv2plug.in/ns/ext/midi#MidiEvent> ; +    lv2:index 2 ; +		lv2:symbol "control" ; +		lv2:name "Control" +	] , [ +		a atom:AtomPort , +      lv2:OutputPort; +    atom:bufferType atom:Sequence ; +    atom:supports <http://lv2plug.in/ns/ext/midi#MidiEvent> ; +    lv2:index 3 ; +		lv2:symbol "control" ; +		lv2:name "Control" +	] , [ +		a lv2:AudioPort , +			lv2:InputPort ; +		lv2:index 4 ; +		lv2:symbol "in1" ; +		lv2:name "In1" +	] , [ +		a lv2:AudioPort , +			lv2:InputPort ; +		lv2:index 5 ; +		lv2:symbol "in2" ; +		lv2:name "In2" +	] , [ +		a lv2:AudioPort , +			lv2:OutputPort ; +		lv2:index 6 ; +		lv2:symbol "out1" ; +		lv2:name "Out1" +	], [ +		a lv2:AudioPort , +			lv2:OutputPort ; +		lv2:index 7 ; +		lv2:symbol "out2" ; +		lv2:name "Out2" +	] . | 
