X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=Makefile.PL;h=6a633eba52e0dbfac68a2b4b2afe667e0fb105b4;hb=8b040d34383cac63412dad5910c4e5e51c9dd629;hp=692897efdb5e235e1b161b746782c66bb24a1a91;hpb=12c26b568cf70d8f9f8285efe03d7caf264161d2;p=perl%2Fmodules%2FAcme-CPANAuthors-You-re_using.git diff --git a/Makefile.PL b/Makefile.PL index 692897e..6a633eb 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -11,23 +11,27 @@ $file = "lib/$file.pm"; my %PREREQ_PM = ( 'Acme::CPANAuthors' => '0.16', - 'Carp' => 0, 'File::Find' => 0, '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", @@ -41,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",