]> git.vpit.fr Git - perl/modules/IPC-MorseSignals.git/blobdiff - Makefile.PL
Better be on irc.perl.org
[perl/modules/IPC-MorseSignals.git] / Makefile.PL
index 341a6ca91cde79e7e5b7013ad74e7d9ed56cb52e..b9705a069d3c5697fd5052234606d276c649181e 100644 (file)
@@ -4,8 +4,8 @@ use ExtUtils::MakeMaker;
 
 BEGIN {
  eval { require Config };
- die "You need the Config module to install this distribution, that's what happened" if $@;
- Config->import qw/%Config/;
+ die 'OS unsupported' if $@;
+ Config->import(qw/%Config/);
 }   
     
 my %sigs;
@@ -15,13 +15,14 @@ for (qw/USR1 USR2/) {
  print "Checking if you have SIG$_... ";
  unless (exists $sigs{$_}) {
   print "no\n";
-  die "Installation stops right here,";
+  die 'OS unsupported';
  }
  print "yes\n";
 }
 
 my $BUILD_REQUIRES = {
  'utf8'                => 0,
+ 'Config'              => 0,
  'Data::Dumper'        => 0,
  'Exporter'            => 0,
  'ExtUtils::MakeMaker' => 0,
@@ -40,23 +41,22 @@ sub build_req {
 }
 
 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 => {
-        'Carp'        => 0,
-        'Exporter'    => 0,
-        'POSIX'       => 0,
-        'Test::More'  => 0,
-        'Time::HiRes' => 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,
     },
-    dist                => {
-        PREOP => 'pod2text lib/IPC/MorseSignals.pm > $(DISTVNAME)/README; '
-                 . build_req,
-        COMPRESS => 'gzip -9f', SUFFIX => 'gz',
+    dist          => {
+        PREOP      => 'pod2text lib/IPC/MorseSignals.pm > $(DISTVNAME)/README; '
+                      . build_req,
+        COMPRESS   => 'gzip -9f', SUFFIX => 'gz',
     },
-    clean               => { FILES => 'IPC-MorseSignals-*' },
+    clean         => { FILES => 'IPC-MorseSignals-* *.gcov *.gcda *.gcno cover_db' },
 );