diff --git a/dist/Safe/Makefile.PL b/dist/Safe/Makefile.PL index abde68152f0b..b261bc0020f1 100644 --- a/dist/Safe/Makefile.PL +++ b/dist/Safe/Makefile.PL @@ -7,4 +7,26 @@ WriteMakefile( VERSION_FROM => 'Safe.pm', INSTALLDIRS => ($] < 5.011 ? 'perl' : 'site'), ($core || $] >= 5.011) ? () : (INST_LIB => '$(INST_ARCHLIB)'), + AUTHOR => [ + 'Malcolm Beattie', + 'Perl 5 Porters ' + ], + ABSTRACT_FROM => 'Safe.pm', + LICENSE => 'perl_5', + META_ADD => { + 'meta-spec' => { + version => '2', + url => 'http://search.cpan.org/perldoc?CPAN::Meta::Spec', + }, + 'resources' => { + 'bugtracker' => { + web => 'https://github.com/Perl/perl5/issues', + }, + 'repository' => { + url => 'git://github.com/Perl/perl5.git', + web => 'https://github.com/Perl/perl5', + type => 'git' + } + } + } );