X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=Makefile.PL;h=4ee7ab16677c357b5ac090f10fd3220f2584898a;hb=7d793115f8a3ef0c70b8166d25d55f618b5542ec;hp=1e8cc00886fa837b51bcfa2cf6def79d4c2841b5;hpb=92e6d17d21b18fdac46cc8c241f1415030c1db2d;p=perl%2Fmodules%2FScalar-Vec-Util.git diff --git a/Makefile.PL b/Makefile.PL index 1e8cc00..4ee7ab1 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -93,6 +93,14 @@ my %PREREQ_PM = ( 'base' => 0, ); +my %BUILD_REQUIRES = ( + 'Config' => 0, + 'ExtUtils::MakeMaker' => 0, + 'File::Spec' => 0, + 'Test::More' => 0, + %PREREQ_PM, +); + my %META = ( configure_requires => { 'Config' => 0, @@ -100,14 +108,11 @@ my %META = ( 'File::Spec' => 0, }, build_requires => { - 'Config' => 0, - 'ExtUtils::MakeMaker' => 0, - 'Test::More' => 0, - %PREREQ_PM, + %BUILD_REQUIRES, }, dynamic_config => 1, 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", @@ -123,6 +128,7 @@ WriteMakefile( PL_FILES => {}, C => \@C, @DEFINES, + BUILD_REQUIRES => \%BUILD_REQUIRES, PREREQ_PM => \%PREREQ_PM, MIN_PERL_VERSION => '5.006', META_MERGE => \%META,