This file is indexed.

/usr/lib/lv2/gxtuner.lv2/gxtuner.ttl is in guitarix 0.28.2-4.

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
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
#
# Copyright (C) 2012 Hermann Meyer, Andreas Degert, Pete Shorthose, Steve Poskitt
# 
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
# --------------------------------------------------------------------------
#


@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix bufsz: <http://lv2plug.in/ns/ext/buf-size#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix guiext: <http://lv2plug.in/ns/extensions/ui#>.
@prefix ev: <http://lv2plug.in/ns/ext/event#>.

<http://guitarix.sourceforge.net#me>
	a foaf:Person ;
	foaf:name "Guitarix team" ;
	foaf:mbox <mailto:brummer@web.de> ;
	rdfs:seeAlso <http://guitarix.sourceforge.net> .

<http://guitarix.sourceforge.net/plugins/gxtuner>
	a doap:Project ;
	doap:maintainer <http://guitarix.sourceforge.net#me> ;
	doap:name "GxTuner" .

<http://guitarix.sourceforge.net/plugins/gxtuner#tuner>
    a lv2:Plugin ,
        lv2:AnalyserPlugin ;
    doap:maintainer <http://guitarix.sourceforge.net#me> ;
    doap:name "GxTuner";
    doap:license <http://opensource.org/licenses/isc> ;
    lv2:project <http://guitarix.sourceforge.net/plugins/gxtuner> ;
    lv2:optionalFeature lv2:hardRTCapable ;

  guiext:ui <http://guitarix.sourceforge.net/plugins/gxtuner#gui>;
  
    lv2:port  [
        a  lv2:ControlPort, lv2:OutputPort ;
        lv2:index 0 ;
        lv2:symbol "FREQ" ;
        lv2:name "FREQ";
        lv2:default 0.0 ;
        lv2:minimum 0.0 ;
        lv2:maximum 1000.0 ;
    ] , [
        a lv2:InputPort ,
            lv2:ControlPort ;
        lv2:index 1 ;
        lv2:symbol "REFFREQ" ;
        lv2:name "REFFREQ";
        lv2:default 440.0 ;
        lv2:minimum 427.0 ;
        lv2:maximum 453.0 ;
    ] ,[
        a lv2:InputPort ,
            lv2:ControlPort ;
        lv2:index 2 ;
        lv2:symbol "TUNER_MODE" ;
        lv2:name "Tuner Mode";
        lv2:portProperty lv2:integer;
        lv2:portProperty lv2:enumeration ;
        lv2:default 0 ;
        lv2:minimum 0 ;
        lv2:maximum 1 ;
        lv2:scalePoint [rdfs:label "(Chromatic)"; rdf:value 0];
        lv2:scalePoint [rdfs:label "Standard/E"; rdf:value 1];
        lv2:scalePoint [rdfs:label "Standard/Es"; rdf:value 2];
        lv2:scalePoint [rdfs:label "Open E"; rdf:value 3];
    ] , [
        a lv2:InputPort ,
            lv2:ControlPort ;
        lv2:index 3 ;
        lv2:symbol "THRESHOLD" ;
        lv2:name "THRESHOLD";
        lv2:default -50 ;
        lv2:minimum -60 ;
        lv2:maximum 4 ;
    ] , [
        a  lv2:ControlPort, lv2:OutputPort ;
        lv2:index 4 ;
        lv2:symbol "MAXL" ;
        lv2:name "MAXL";
        lv2:default 0.0 ;
        lv2:minimum 0.0 ;
        lv2:maximum 1000.0 ;
    ] , [
        a lv2:InputPort ,
            lv2:ControlPort ;
        lv2:index 5 ;
        lv2:symbol "RESET" ;
        lv2:name "RESET";
        lv2:default 1 ;
        lv2:minimum -10 ;
        lv2:maximum 10 ;
    ] , [
        a lv2:InputPort ,
            lv2:ControlPort ;
        lv2:index 6 ;
        lv2:symbol "LEVEL" ;
        lv2:name "LEVEL";
        lv2:default -20 ;
        lv2:minimum -60 ;
        lv2:maximum 4 ;
   ] , [
        a lv2:InputPort ,
            lv2:ControlPort ;
        lv2:index 7 ;
        lv2:symbol "CHANNEL" ;
        lv2:name "CHANNELL";
        lv2:portProperty lv2:integer;
        lv2:portProperty lv2:enumeration ;
        lv2:default 0 ;
        lv2:minimum 0 ;
        lv2:maximum 16 ;
        lv2:scalePoint [rdfs:label "0"; rdf:value 0];
        lv2:scalePoint [rdfs:label "1"; rdf:value 1];
        lv2:scalePoint [rdfs:label "2"; rdf:value 2];
        lv2:scalePoint [rdfs:label "3"; rdf:value 3];
        lv2:scalePoint [rdfs:label "4"; rdf:value 4];
        lv2:scalePoint [rdfs:label "5"; rdf:value 5];
        lv2:scalePoint [rdfs:label "6"; rdf:value 6];
        lv2:scalePoint [rdfs:label "7"; rdf:value 7];
        lv2:scalePoint [rdfs:label "8"; rdf:value 8];
        lv2:scalePoint [rdfs:label "9"; rdf:value 9];
        lv2:scalePoint [rdfs:label "10"; rdf:value 10];
        lv2:scalePoint [rdfs:label "11"; rdf:value 11];
        lv2:scalePoint [rdfs:label "12"; rdf:value 12];
        lv2:scalePoint [rdfs:label "13"; rdf:value 13];
        lv2:scalePoint [rdfs:label "14"; rdf:value 14];
        lv2:scalePoint [rdfs:label "15"; rdf:value 15];
        lv2:scalePoint [rdfs:label "16"; rdf:value 16];
    ] , [
        a lv2:InputPort ,
            lv2:ControlPort ;
        lv2:index 8 ;
        lv2:symbol "MIDI_ON" ;
        lv2:name "MIDI_ON";
        lv2:portProperty lv2:integer;
        lv2:default 0 ;
        lv2:minimum 0 ;
        lv2:maximum 1 ;
    ] , [
        a lv2:InputPort ,
            lv2:ControlPort ;
        lv2:index 9 ;
        lv2:symbol "FASTNOTE" ;
        lv2:name "FASTNOTE";
        lv2:portProperty lv2:integer;
        lv2:default 0 ;
        lv2:minimum 0 ;
        lv2:maximum 1 ;
    ] , [
        a lv2:InputPort ,
            lv2:ControlPort ;
        lv2:index 10 ;
        lv2:symbol "PITCHBEND" ;
        lv2:name "PITCHBEND";
        lv2:portProperty lv2:integer;
        lv2:default 0 ;
        lv2:minimum 0 ;
        lv2:maximum 1 ;
    ] , [
        a lv2:InputPort ,
            lv2:ControlPort ;
        lv2:index 11 ;
        lv2:symbol "SINGLENOTE" ;
        lv2:name "SINGLENOTE";
        lv2:portProperty lv2:integer;
        lv2:default 0 ;
        lv2:minimum 0 ;
        lv2:maximum 1 ;
    ] , [
        a  lv2:ControlPort, lv2:InputPort ;
        lv2:index 12 ;
        lv2:symbol "BPM" ;
        lv2:name "BPM";
        lv2:portProperty lv2:integer;
        lv2:default 0.0 ;
        lv2:minimum 0.0 ;
        lv2:maximum 360.0 ;
    ] , [
        a  lv2:ControlPort, lv2:InputPort ;
        lv2:index 13 ;
        lv2:symbol "VELOCITY" ;
        lv2:name "VELOCITY";
        lv2:portProperty lv2:integer;
        lv2:default 64.0 ;
        lv2:minimum 0.0 ;
        lv2:maximum 127.0 ;
    ] , [
        a lv2:InputPort ,
            lv2:ControlPort ;
        lv2:index 14 ;
        lv2:symbol "VERIFY" ;
        lv2:name "VERIFY";
        lv2:portProperty lv2:integer;
        lv2:default 1 ;
        lv2:minimum 1 ;
        lv2:maximum 12 ;
    ] , [
        a lv2:InputPort ,
            lv2:ControlPort ;
        lv2:index 15 ;
        lv2:symbol "GATE" ;
        lv2:name "GATE";
        lv2:portProperty lv2:integer;
        lv2:default 0 ;
        lv2:minimum 0 ;
        lv2:maximum 1 ;
    ] , [
        a lv2:InputPort ,
            lv2:ControlPort ;
        lv2:index 16 ;
        lv2:symbol "SYNTHFREQ" ;
        lv2:name "SYNTHFREQ";
        lv2:default 220 ;
        lv2:minimum 30 ;
        lv2:maximum 1000 ;
    ] , [
        a lv2:InputPort ,
            lv2:ControlPort ;
        lv2:index 17 ;
        lv2:symbol "GAIN" ;
        lv2:name "GAIN";
        lv2:default 1 ;
        lv2:minimum 0 ;
        lv2:maximum 1 ;
    ] , [
        a ev:EventPort, lv2:OutputPort;
        lv2:index 18;
        ev:supportsEvent <http://lv2plug.in/ns/ext/midi#MidiEvent>;
        lv2:symbol "midi_out";
        lv2:name "MIDI Out";
        lv2:portProperty lv2:connectionOptional;
    ] , [
        a lv2:AudioPort ,
            lv2:OutputPort ;
        lv2:index 19 ;
        lv2:symbol "out" ;
        lv2:name "Out" ;
    ] , [
        a lv2:AudioPort ,
            lv2:InputPort ;
        lv2:index 20 ;
        lv2:symbol "in" ;
        lv2:name "In" ;
    ].

<http://guitarix.sourceforge.net/plugins/gxtuner#gui>
  a guiext:GtkUI;
  guiext:binary <gxtuner_gui.so>;
  guiext:requiredFeature guiext:makeResident .