]> git.vpit.fr Git - perl/modules/Bit-MorseSignals.git/blobdiff - Makefile.PL
Importing Bit-MorseSignals-0.04.tar.gz
[perl/modules/Bit-MorseSignals.git] / Makefile.PL
index 38a01ab2c458c3c57df29dd7007552087e8c0ffc..00a75323ebde8192e6af2a784d5467884a3fcfe8 100644 (file)
@@ -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 <perl@profvince.com>',
@@ -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-*' },