]> git.donarmstrong.com Git - term-progressbar.git/blobdiff - Makefile.PL
gitignore releases
[term-progressbar.git] / Makefile.PL
index d227a2142c2397eb2a4a67b0a0e62a47dd1b77d3..494f2c704d6c245656a690fd4a5c0dd79859be29 100644 (file)
@@ -1,24 +1,22 @@
 require 5.006;
 use strict;
+use warnings;
 
 use ExtUtils::MakeMaker;
 
 WriteMakefile (
   NAME         => 'Term-ProgressBar',
-  VERSION      => '2.09',
+  VERSION_FROM => 'lib/Term/ProgressBar.pm',
   AUTHOR       => 'Martyn J. Pearce ',
-  ABSTRACT     => 'provide a progress meter on a standard terminal',
-  PREREQ_PM    => +
+#  ABSTRACT     => 'provide a progress meter on a standard terminal',
+  PREREQ_PM    => { 
                      'Class::MethodMaker' => '1.02',
-                     'Term::ReadKey' => '2.14',},
-  EXE_FILES    => [qw(  )],
-  # Need this to stop Makefile treating Build.PL as a producer of Build as a
-  # target for 'all'.
-  PL_FILES     => +{},
-  clean        => +{ FILES => join(' ', qw( Build _build )) },
-  realclean    => +{ FILES => join(' ', qw( Build.PL META.yml
-                                            Makefile.PL
-                                            SIGNATURE
-                                            README INSTALL
-                                            configure make-pm )) },
+                     'Term::ReadKey' => '2.14',
+  },
+  BUILD_REQUIRES => {
+                     'Capture::Tiny' => '0.13',
+                     'Test::More'    => '0.80',
+                     'Test::Exception' => '0.31',
+                     'File::Temp'    => 0,
+  },
 );