X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=6939e2ada1f06fc91f73f713f5cb36c17fe13d87;hb=480534a88ae50b8e151a01c8488aa019d0e5d395;hp=11f376c1dfba6c7b08280c907463370b25f690fc;hpb=59b1a634003229d22cc231e25980aeb561a01ee5;p=p5sagit%2Flocal-lib.git diff --git a/Makefile.PL b/Makefile.PL index 11f376c..6939e2a 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -88,6 +88,9 @@ DEATH system($^X, '-MExtUtils::Install 1.43', '-e1'); my $eui = $? >> 8; + system($^X, '-MModule::Build 0.36', '-e1'); + my $mb = $? >> 8; + system($^X, '-MCPAN 1.82', '-e1'); my $cpan = $? >> 8; my $cpan_command = ''; @@ -134,6 +137,9 @@ DEATH if ($eui) { $cpan_command .= 'install("ExtUtils::Install"); '; } + if ($mb) { + $cpan_command .= 'install("Module::Build"); '; + } if ($cpan) { $cpan_command .= 'force("install","CPAN"); '; } @@ -245,4 +251,9 @@ END auto_install; } chdir($cwd); +resources( + repository => 'git://git.shadowcat.co.uk/p5sagit/local-lib.git', + homepage => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/local-lib.git', + bugtracker => 'http://rt.cpan.org/Public/Dist/Display.html?Name=local-lib', +); WriteAll;