This file is indexed.

/usr/lib/lv2/sapistaEQv2.lv2/bassup.ttl is in eq10q 2.0~repack0-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
@prefix lv2:  <http://lv2plug.in/ns/lv2core#>.
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix doap: <http://usefulinc.com/ns/doap#>.
@prefix guiext: <http://lv2plug.in/ns/extensions/ui#>.

##LV2 GUI extension
<http://eq10q.sourceforge.net/bassup/gui>
  a guiext:GtkUI;
  guiext:binary <gui/bassup_gui.so>;
  guiext:requiredFeature guiext:makeResident;
  guiext:optionalFeature guiext:noUserResize.

##LV2 plugin binary
<http://eq10q.sourceforge.net/bassup>
  a lv2:Plugin;
  lv2:binary <bassup.so>;
  doap:name "BassUp";
  doap:license <http://usefulinc.com/doap/licenses/gpl>;
  lv2:optionalFeature lv2:hardRtCapable;

guiext:ui <http://eq10q.sourceforge.net/bassup/gui>;

doap:maintainer [
      foaf:name "Pere Rafols Soler";
      foaf:homepage <http://eq10q.sourceforge.net/> ;
      foaf:mbox <mailto:sapista2@gmail.com> ;
   ] ;

      lv2:port [
              a lv2:AudioPort, lv2:OutputPort;
              lv2:index 0;
              lv2:symbol "output";
              lv2:name "Output";
      ],

      [
              a lv2:AudioPort, lv2:InputPort;
              lv2:index 1;
              lv2:symbol "input";
              lv2:name "Input";
      ],

      [
              a lv2:ControlPort, lv2:InputPort;
              lv2:index 2;
              lv2:symbol "amount";
              lv2:name "Amount";
              lv2:minimum 0;
              lv2:maximum 6;
              lv2:default 0;
      ].