Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 19 additions & 4 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,32 @@ WriteMakefile(
},
MAN3PODS => {},
DEFINE => '-DUSE_PPPORT_H',
INSTALLDIRS => 'perl',

# 'perl' is reserved for things that shipped with the perl version;
# on perls after 5.011000, 'site' has precedence over 'perl', but before
# that 'perl' had precedence so we need to keep installing to there.
"$]" <= 5.011000 ? ( INSTALLDIRS => 'perl' ) : (),

PREREQ_PM => {
$have_test_requires ? () : %test_req,
},
$have_test_requires ? (TEST_REQUIRES => \%test_req) : (),

META_MERGE => {
'meta-spec' => { version => 2 },
dynamic_config => 0,
resources => {
repository => 'git://perl5.git.perl.org/perl.git perl-git',
bugtracker => 'http://rt.perl.org/perlbug/',
MailingList => 'http://lists.cpan.org/showlist.cgi?name=perl5-porters'
repository => {
url => 'git://perl5.git.perl.org/perl.git',
web => 'https://perl5.git.perl.org/perl.git',
type => 'git',
},
bugtracker => {
mailto => 'perlbug@perl.org',
web => 'https://rt.perl.org',
},
x_MailingList => 'http://lists.perl.org/list/perl5-porters.html',
x_IRC => 'irc://irc.perl.org/#p5p',
},
}
);