X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=Makefile.PL;h=ed310485b92f503f17270053d16024a71b8e75b6;hb=148e57967c3b117f2744a6d78f5410f82bdd7fc1;hp=13a0c2bb0d5e3fed0e3e8890cedc061364dd0bd7;hpb=e8b777e025ed69b121b659618d6d6451541cee5a;p=perl%2Fmodules%2FScope-Context.git diff --git a/Makefile.PL b/Makefile.PL index 13a0c2b..ed31048 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -16,14 +16,18 @@ my %PREREQ_PM = ( 'Scalar::Util' => 0, ); +my %BUILD_REQUIRES = ( + 'ExtUtils::MakeMaker' => 0, + 'Test::More' => 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 => { @@ -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",