]> git.vpit.fr Git - perl/modules/IPC-MorseSignals.git/blobdiff - Makefile.PL
Give an explicit value to dynamic_config
[perl/modules/IPC-MorseSignals.git] / Makefile.PL
index f7ab125617e60c79750de36880f4ec3ee71d6b24..824ce4daad36a036e13c3dc87bc6d6f45a498014 100644 (file)
@@ -15,48 +15,57 @@ for (qw/USR1 USR2/) {
  print "Checking if you have SIG$_... ";
  unless (exists $sigs{$_}) {
   print "no\n";
-  die 'OS unsupported' if $@;
+  die 'OS unsupported';
  }
  print "yes\n";
 }
 
-my $BUILD_REQUIRES = {
- 'utf8'                => 0,
- 'Config'              => 0,
- 'Data::Dumper'        => 0,
- 'Exporter'            => 0,
- 'ExtUtils::MakeMaker' => 0,
- 'POSIX'               => 0,
- 'Test::More'          => 0,
-};
+my $dist = 'IPC-MorseSignals';
 
-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;
-}
+my %META = (
+ configure_requires => {
+  'Config'              => 0,
+  'ExtUtils::MakeMaker' => 0,
+ },
+ build_requires => {
+  'utf8'                => 0,
+  'Config'              => 0,
+  'Data::Dumper'        => 0,
+  'Exporter'            => 0,
+  'ExtUtils::MakeMaker' => 0,
+  'POSIX'               => 0,
+  'Test::More'          => 0,
+ },
+ dynamic_config => 1,
+ 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%2Fmodules%2F$dist.git",
+ },
+);
 
 WriteMakefile(
-    NAME                => 'IPC::MorseSignals',
-    AUTHOR              => 'Vincent Pit <perl@profvince.com>',
-    LICENSE             => 'perl',
-    VERSION_FROM        => 'lib/IPC/MorseSignals.pm',
-    ABSTRACT_FROM       => 'lib/IPC/MorseSignals.pm',
-    PL_FILES            => {},
-    PREREQ_PM => {
-        'Bit::MorseSignals' => 0,
+    NAME             => 'IPC::MorseSignals',
+    AUTHOR           => 'Vincent Pit <perl@profvince.com>',
+    LICENSE          => 'perl',
+    VERSION_FROM     => 'lib/IPC/MorseSignals.pm',
+    ABSTRACT_FROM    => 'lib/IPC/MorseSignals.pm',
+    PL_FILES         => {},
+    PREREQ_PM        => {
+        'Bit::MorseSignals' => 0.05,
         'Carp'              => 0,
         'POSIX'             => 0,
         'Time::HiRes'       => 0,
+        'base'              => 0,
     },
-    dist                => {
-        PREOP => 'pod2text lib/IPC/MorseSignals.pm > $(DISTVNAME)/README; '
-                 . build_req,
+    MIN_PERL_VERSION => 5.008,
+    META_MERGE       => \%META,
+    dist             => {
+        PREOP    => 'pod2text lib/IPC/MorseSignals.pm > $(DISTVNAME)/README',
         COMPRESS => 'gzip -9f', SUFFIX => 'gz',
     },
-    clean               => { FILES => 'IPC-MorseSignals-*' },
+    clean            => {
+        FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt"
+    },
 );