X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FSub-Nary.git;a=blobdiff_plain;f=Makefile.PL;h=aaf42958f98d6901b9fc407e4884d10ab568a691;hp=ac941d305c4ab481186974b65c4847c8f931e397;hb=a9c414973d1c28519f4b527dffe0f2a45986e84a;hpb=5bb5e2ff9bff2152971bd6a5a673643ed18c9a4a diff --git a/Makefile.PL b/Makefile.PL index ac941d3..aaf4295 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -6,6 +6,12 @@ use ExtUtils::MakeMaker; my $dist = 'Sub-Nary'; +my %PREREQ_PM = ( + 'B' => 0, + 'Carp' => 0, + 'XSLoader' => 0, +); + my %META = ( configure_requires => { 'ExtUtils::MakeMaker' => 0, @@ -13,12 +19,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,11 +37,7 @@ WriteMakefile( VERSION_FROM => 'lib/Sub/Nary.pm', ABSTRACT_FROM => 'lib/Sub/Nary.pm', PL_FILES => {}, - PREREQ_PM => { - 'B' => 0, - 'Carp' => 0, - 'XSLoader' => 0 - }, + PREREQ_PM => \%PREREQ_PM, MIN_PERL_VERSION => 5.008001, META_MERGE => \%META, dist => {