diff options
author | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2013-05-10 12:57:57 +0100 |
---|---|---|
committer | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2013-05-19 10:25:33 +0100 |
commit | 0b1e85f9e451ed79376c7aa8df43456355afbcae (patch) | |
tree | 8aa069b241ab8ba74773727f2773a8d71a52c199 /dist | |
parent | e1075176865db1ea361f2039de25ecdf6e04d4e6 (diff) | |
download | perl-0b1e85f9e451ed79376c7aa8df43456355afbcae.tar.gz |
Add repository and bugtracker META to Module-CoreList Makefile.PL
Diffstat (limited to 'dist')
-rw-r--r-- | dist/Module-CoreList/Makefile.PL | 15 |
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, ) ; |