X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FBit-MorseSignals.git;a=blobdiff_plain;f=Makefile.PL;h=00a75323ebde8192e6af2a784d5467884a3fcfe8;hp=38a01ab2c458c3c57df29dd7007552087e8c0ffc;hb=0288f57c6aaf2cb133df80f13d78af66ea094902;hpb=9a209b336e8b6850c08050f7ca84f86f0546bf57 diff --git a/Makefile.PL b/Makefile.PL index 38a01ab..00a7532 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -2,6 +2,22 @@ use strict; use warnings; use ExtUtils::MakeMaker; +my $BUILD_REQUIRES = { + 'utf8' => 0, + 'ExtUtils::MakeMaker' => 0, + 'Test::More' => 0, +}; + +sub build_req { + my $tometa = ' >> $(DISTVNAME)/META.yml;'; + my $build_req = 'echo "build_requires:" ' . $tometa; + foreach my $mod ( sort { lc $a cmp lc $b } keys %$BUILD_REQUIRES ) { + my $ver = $BUILD_REQUIRES->{$mod}; + $build_req .= sprintf 'echo " %-30s %s" %s', "$mod:", $ver, $tometa; + } + return $build_req; +} + WriteMakefile( NAME => 'Bit::MorseSignals', AUTHOR => 'Vincent Pit ', @@ -14,10 +30,10 @@ WriteMakefile( 'Encode' => 0, 'Exporter' => 0, 'Storable' => 0, - 'Test::More' => 0, }, dist => { - PREOP => 'pod2text lib/Bit/MorseSignals.pm > $(DISTVNAME)/README', + PREOP => 'pod2text lib/Bit/MorseSignals.pm > $(DISTVNAME)/README; ' + . build_req, COMPRESS => 'gzip -9f', SUFFIX => 'gz' }, clean => { FILES => 'Bit-MorseSignals-*' },