X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=Makefile.PL;h=6a633eba52e0dbfac68a2b4b2afe667e0fb105b4;hb=4e67a9de485923befcb9fab8a9e13f3ccc4f47d8;hp=ec59798b65a3040059cf8f4a838ade61a68ff24d;hpb=0bb547c9593c1291ee4c5eb226e0250a004bde4e;p=perl%2Fmodules%2FAcme-CPANAuthors-You-re_using.git diff --git a/Makefile.PL b/Makefile.PL index ec59798..6a633eb 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -15,18 +15,23 @@ my %PREREQ_PM = ( 'Module::Metadata' => '1.000005', ); +my %BUILD_REQUIRES = ( + 'ExtUtils::MakeMaker' => 0, + 'Test::More' => 0, + 'lib' => 0, + %PREREQ_PM, +); + my %META = ( configure_requires => { 'ExtUtils::MakeMaker' => 0, }, build_requires => { - 'ExtUtils::MakeMaker' => 0, - 'Test::More' => 0, - %PREREQ_PM, + %BUILD_REQUIRES, }, dynamic_config => 0, resources => { - bugtracker => "http://rt.cpan.org/NoAuth/ReportBug.html?Queue=$dist", + bugtracker => "http://rt.cpan.org/Dist/Display.html?Name=$dist", homepage => "http://search.cpan.org/dist/$dist/", license => 'http://dev.perl.org/licenses/', repository => "http://git.profvince.com/?p=perl%2Fmodules%2F$dist.git", @@ -40,8 +45,9 @@ WriteMakefile( VERSION_FROM => $file, ABSTRACT_FROM => $file, PL_FILES => {}, + BUILD_REQUIRES => \%BUILD_REQUIRES, PREREQ_PM => \%PREREQ_PM, - MIN_PERL_VERSION => 5.006, + MIN_PERL_VERSION => '5.006', META_MERGE => \%META, dist => { PREOP => "pod2text -u $file > \$(DISTVNAME)/README",