This file is indexed.

/usr/lib/lv2/b_synth/b_synth.ttl is in setbfree 0.8.5-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
@prefix atom:  <http://lv2plug.in/ns/ext/atom#> .
@prefix doap:  <http://usefulinc.com/ns/doap#> .
@prefix foaf:  <http://xmlns.com/foaf/0.1/> .
@prefix lv2:   <http://lv2plug.in/ns/lv2core#> .
@prefix mod:   <http://moddevices.com/ns/mod#> .
@prefix pg:    <http://lv2plug.in/ns/ext/port-groups#> .
@prefix rdf:   <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs:  <http://www.w3.org/2000/01/rdf-schema#> .
@prefix urid:  <http://lv2plug.in/ns/ext/urid#> .
@prefix state: <http://lv2plug.in/ns/ext/state#> .
@prefix work:  <http://lv2plug.in/ns/ext/worker#> .
@prefix sb3:   <http://gareus.org/oss/lv2/b_synth#> .
@prefix rsz:   <http://lv2plug.in/ns/ext/resize-port#> .

<http://gareus.org/rgareus#me>
	a foaf:Person ;
	foaf:name "Robin Gareus" ;
	foaf:mbox <mailto:robin@gareus.org> ;
	foaf:homepage <http://gareus.org/> .

<http://gareus.org/oss/lv2/b_synth>
	a lv2:Plugin, lv2:InstrumentPlugin, doap:Project;
	doap:maintainer <http://gareus.org/rgareus#me> ;
	doap:name "setBfree DSP Tonewheel Organ";
	doap:license <http://usefulinc.com/doap/licenses/gpl> ;
	lv2:microVersion 0 ;lv2:minorVersion 2058 ;
	lv2:optionalFeature lv2:hardRTCapable ;
	lv2:requiredFeature urid:map , work:schedule ;
	lv2:extensionData state:interface , work:interface ;
	lv2:port
	[
		a atom:AtomPort ,
			lv2:InputPort ;
		atom:bufferType atom:Sequence ;
		lv2:designation lv2:control ;
		atom:supports <http://lv2plug.in/ns/ext/midi#MidiEvent> ;
		lv2:index 0 ;
		lv2:symbol "control" ;
		lv2:name "MIDI In"
	] , [
		a atom:AtomPort ,
			lv2:OutputPort ;
		atom:bufferType atom:Sequence ;
		atom:supports <http://lv2plug.in/ns/ext/midi#MidiEvent> ;
		lv2:designation lv2:control ;
		lv2:index 1 ;
		lv2:symbol "notify" ;
		rsz:minimumSize 65536;
		lv2:name "MIDI Out";
	],
	[
		a lv2:AudioPort ,
			lv2:OutputPort ;
		lv2:index 2 ;
		lv2:symbol "outL" ;
		lv2:name "Left Output" ;
		pg:group pg:StereoGroup;
		lv2:designation pg:left ;
	],	
	[
		a lv2:AudioPort ,
			lv2:OutputPort ;
		lv2:index 3 ;
		lv2:symbol "outR" ;
		lv2:name "Right Output" ;
		pg:group pg:StereoGroup;
		lv2:designation pg:right
	];
	
	
	rdfs:comment "setBfree is a MIDI-controlled, software synthesizer designed to imitate the sound and properties of the electromechanical organs and sound modification devices that brought world-wide fame to the names and products of Laurens Hammond and Don Leslie."
	.

@prefix ui:    <http://lv2plug.in/ns/extensions/ui#> .

<http://gareus.org/oss/lv2/b_synth>
	ui:ui <http://gareus.org/oss/lv2/b_synth#ui> ;
	.

<http://gareus.org/oss/lv2/b_synth#ui>
	a ui:X11UI;
	lv2:requiredFeature urid:map ;
	lv2:requiredFeature ui:idleInterface; lv2:extensionData ui:idleInterface;
	ui:portNotification [
		ui:plugin <http://gareus.org/oss/lv2/b_synth> ;
		lv2:symbol "notify";
		ui:notifyType atom:Blank
	]
	.