This file is indexed.

/usr/share/perl5/Carton/Package.pm is in carton 1.0.22-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
package Carton::Package;
use strict;
use Class::Tiny qw( name version pathname );

sub BUILDARGS {
    my($class, @args) = @_;
    return { name => $args[0], version => $args[1], pathname => $args[2] };
}

1;