/usr/share/perl5/Module/Install/ManifestSkip.pm is in libmodule-install-manifestskip-perl 0.24-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 | use strict; use warnings;
package Module::Install::ManifestSkip;
our $VERSION = '0.24';
use base 'Module::Install::Base';
our $AUTHOR_ONLY = 1;
my $skip_file = "MANIFEST.SKIP";
sub manifest_skip {
my $self = shift;
return unless $self->is_admin;
require Module::Manifest::Skip;
print "Writing $skip_file\n";
open OUT, '>', $skip_file
or die "Can't open $skip_file for output: $!";;
print OUT Module::Manifest::Skip->new->text;
close OUT;
$self->clean_files('MANIFEST');
$self->clean_files($skip_file)
if grep /^clean$/, @_;
}
1;
|