From c37cbd2873181dda78c8fabf284e016b78ef0e20 Mon Sep 17 00:00:00 2001 From: Gabor Szabo Date: Wed, 21 Dec 2011 08:35:15 +0200 Subject: [PATCH] update Makefile.PL --- Makefile.PL | 22 +++++++--------------- 1 file changed, 7 insertions(+), 15 deletions(-) diff --git a/Makefile.PL b/Makefile.PL index 85dc57c..494f2c7 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,30 +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',}, + 'Term::ReadKey' => '2.14', + }, 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 )) }, ); -- 2.39.2