X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FLaTeX-TikZ.git;a=blobdiff_plain;f=Makefile.PL;h=abd2802c9de0f4df4a61d522adab19de55f8e616;hp=d8ea7a63d2262fb0a69e5705fededf2ae1603632;hb=HEAD;hpb=1ba0379a8ec093cb2b98cd3f69740faa82e0ebcc diff --git a/Makefile.PL b/Makefile.PL index d8ea7a6..abd2802 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -12,7 +12,6 @@ my $dist = 'LaTeX-TikZ'; $file = "lib/$file.pm"; my %PREREQ_PM = ( - 'Any::Moose' => 0, 'Carp' => 0, 'List::Util' => 0, 'Math::Complex' => 0, @@ -24,14 +23,19 @@ my %PREREQ_PM = ( 'constant' => 0, ); +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 => { @@ -49,6 +53,7 @@ WriteMakefile( VERSION_FROM => $file, ABSTRACT_FROM => $file, PL_FILES => {}, + BUILD_REQUIRES => \%BUILD_REQUIRES, PREREQ_PM => \%PREREQ_PM, MIN_PERL_VERSION => '5.008', META_MERGE => \%META,