]> git.donarmstrong.com Git - term-progressbar.git/blobdiff - Makefile.PL
Update the version number since we're going to make changes.
[term-progressbar.git] / Makefile.PL
index 85dc57cd1f416932236b2b92d002a573ca00bdde..c0bb712932762d691a1c061fc93844ce53eb8971 100644 (file)
@@ -1,30 +1,32 @@
 require 5.006;
 use strict;
+use warnings;
 
 use ExtUtils::MakeMaker;
 
 WriteMakefile (
-  NAME         => 'Term-ProgressBar',
-  VERSION      => '2.09',
-  AUTHOR       => 'Martyn J. Pearce ',
-  ABSTRACT     => 'provide a progress meter on a standard terminal',
-  PREREQ_PM    => +{ 
-                     'Class::MethodMaker' => '1.02',
-                     'Term::ReadKey' => '2.14',},
+  NAME         => 'Term::ProgressBar',
+  VERSION_FROM => 'lib/Term/ProgressBar.pm',
+  ABSTRACT_FROM => 'lib/Term/ProgressBar.pm',
+  AUTHOR       => 'Martyn J. Pearce',
+  LICENSE      => 'perl',
+  PREREQ_PM    => { 
+    'Class::MethodMaker' => '1.02',
+    'Term::ReadKey' => '2.14',
+
+    'Carp'  => 0,
+    'Fatal' => 0,
+    'POSIX' => 0,
+  },
   BUILD_REQUIRES => {
-                     'Capture::Tiny' => '0.12',
+                     'Capture::Tiny' => '0.13',
                      'Test::More'    => '0.80',
                      'Test::Exception' => '0.31',
                      'File::Temp'    => 0,
   },
-  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 )) },
+  META_MERGE        => {
+       resources => {
+           repository  =>  'https://github.com/szabgab/Term-ProgressBar',
+       },
+  },
 );