/usr/share/perl5/Pod/ProjectDocs/Config.pm is in libpod-projectdocs-perl 0.50-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 52 53 54 55 56 57 58 59 60 61 62 63 64 | package Pod::ProjectDocs::Config;
use strict;
use warnings;
our $VERSION = '0.50'; # VERSION
use Moose;
has 'title' => (
is => 'ro',
default => "MyProject's Libraries",
isa => 'Str',
);
has 'desc' => (
is => 'ro',
default => "manuals and libraries",
isa => 'Str',
);
has 'verbose' => (
is => 'ro',
isa => 'Bool',
);
has 'index' => (
is => 'ro',
isa => 'Bool',
);
has 'forcegen' => (
is => 'ro',
isa => 'Bool',
);
has 'nosourcecode' => (
is => 'ro',
isa => 'Bool',
);
has 'outroot' => (
is => 'ro',
isa => 'Str',
);
has 'libroot' => (
is => 'ro',
isa => 'ArrayRef[Str]'
);
has 'lang' => (
is => 'ro',
default => 'en',
isa => 'Str',
);
has 'except' => (
is => 'ro',
isa => 'ArrayRef[Str]'
);
1;
__END__
|