This file is indexed.

/usr/share/perl5/Audio/File/Flac.pm is in libaudio-file-perl 0.11-3.

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
package Audio::File::Flac;

use strict;
use warnings;
use base qw( Audio::File::Type );
use Audio::File::Flac::Tag;
use Audio::File::Flac::AudioProperties;

our $VERSION = '0.02';

sub init {
	return 1;
}

sub _create_tag {
	my $self = shift;
	$self->{tag} = Audio::File::Flac::Tag->new( $self->name() ) or return;
	return 1;
}

sub _create_audio_properties {
	my $self = shift;
	$self->{audio_properties} = Audio::File::Flac::AudioProperties->new( $self->name() ) or return;
	return 1;
}

1;