This file is indexed.

/usr/share/perl5/Module/Starter/Plugin/CGIApp/templates/Makefile.PL is in libmodule-starter-plugin-cgiapp-perl 0.30-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
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => '<tmpl_var distro>',
    ABSTRACT            => 'Abstract goes here.',
    AUTHOR              => '<tmpl_var author> <<tmpl_var email>>',
    LICENSE             => '<tmpl_var license>',
    VERSION             => '0.01',
    PL_FILES            => {},
    PREREQ_PM => {
        'CGI::Application'              => 4.04,
        'HTML::Template'                => 0,
        'Test::More'                    => 0,
        'Test::WWW::Mechanize::CGIApp'  => 0,
    },
    SIGN => 1,
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => '<tmpl_var distro>-*' },
);