X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=Makefile.PL;h=953f57895905918ed8ac3d0e48d3cefdb15e7991;hb=b02c8b9901366830eaec3e39ad3683e9fa5b387b;hp=e899afd8dd3592e784c952ecb0c52e2a775f2a7f;hpb=ff73554db7dfa71f3d4703b87f08b0f83865cc2f;p=perl%2Fmodules%2Fwith.git diff --git a/Makefile.PL b/Makefile.PL index e899afd..953f578 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -6,6 +6,14 @@ use ExtUtils::MakeMaker; my $dist = 'with'; +my %PREREQ_PM = ( + 'Carp' => 0, + 'Filter::Util::Call' => 0, + 'Scalar::Util' => 0, + 'Sub::Prototype::Util' => '0.08', + 'Text::Balanced' => 0, +); + my %META = ( configure_requires => { 'ExtUtils::MakeMaker' => 0, @@ -13,12 +21,14 @@ my %META = ( build_requires => { 'ExtUtils::MakeMaker' => 0, 'Test::More' => 0, + %PREREQ_PM, }, + dynamic_config => 0, resources => { bugtracker => "http://rt.cpan.org/NoAuth/ReportBug.html?Queue=$dist", homepage => "http://search.cpan.org/dist/$dist/", license => 'http://dev.perl.org/licenses/', - repository => "http://git.profvince.com/?p=perl/modules/$dist.git", + repository => "http://git.profvince.com/?p=perl%2Fmodules%2F$dist.git", }, ); @@ -29,13 +39,7 @@ WriteMakefile( VERSION_FROM => 'lib/with.pm', ABSTRACT_FROM => 'lib/with.pm', PL_FILES => {}, - PREREQ_PM => { - 'Carp' => 0, - 'Filter::Util::Call' => 0, - 'Scalar::Util' => 0, - 'Sub::Prototype::Util' => 0.08, - 'Text::Balanced' => 0, - }, + PREREQ_PM => \%PREREQ_PM, MIN_PERL_VERSION => 5.009004, META_MERGE => \%META, dist => {