summaryrefslogtreecommitdiff
path: root/manifest.ttl
blob: 14682150bdfb6b489ff210aaec663a257babaa1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# 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 idpy:   <http://harrisonconsoles.com/lv2/inlinedisplay#> .

@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:optionalFeature idpy:queue_draw ;
	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"
	] .