summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>2013-05-10 12:57:57 +0100
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>2013-05-10 12:57:57 +0100
commitddd66388bd9fbae5aed96c852f5d19898d707434 (patch)
tree80cfedd743150023f58063830823b38f433f8f65
parentd4d6c558798ba630312407b7763020c11ad0acab (diff)
downloadperl-ddd66388bd9fbae5aed96c852f5d19898d707434.tar.gz
Add repository and bugtracker META to Module-CoreList Makefile.PL
-rw-r--r--dist/Module-CoreList/Makefile.PL15
1 files changed, 15 insertions, 0 deletions
diff --git a/dist/Module-CoreList/Makefile.PL b/dist/Module-CoreList/Makefile.PL
index 9f86c61225..f95b29d7fb 100644
--- a/dist/Module-CoreList/Makefile.PL
+++ b/dist/Module-CoreList/Makefile.PL
@@ -2,6 +2,14 @@ use ExtUtils::MakeMaker;
push @extra, 'INSTALLDIRS' => 'perl' if $] >= 5.008009 and $] < 5.012;
+push @extra, 'META_MERGE' => {
+ resources => {
+ repository => 'git://perl5.git.perl.org/perl.git',
+ bugtracker => 'https://rt.perl.org/rt3/',
+ homepage => "http://dev.perl.org/",
+ },
+ } unless $ExtUtils::MakeMaker::VERSION < 6.46;
+
WriteMakefile
(
@@ -16,6 +24,13 @@ WriteMakefile
'INSTALLDIRS' => ($] < 5.011 ? 'perl' : 'site'),
'PL_FILES' => {},
LICENSE => 'perl',
+ META_MERGE => {
+ resources => {
+ repository => 'git://perl5.git.perl.org/perl.git',
+ bugtracker => 'https://rt.perl.org/rt3/',
+ homepage => "http://dev.perl.org/",
+ },
+ },
@extra,
)
;