]> git.donarmstrong.com Git - term-progressbar.git/blob - Makefile.PL
85dc57cd1f416932236b2b92d002a573ca00bdde
[term-progressbar.git] / Makefile.PL
1 require 5.006;
2 use strict;
3
4 use ExtUtils::MakeMaker;
5
6 WriteMakefile (
7   NAME         => 'Term-ProgressBar',
8   VERSION      => '2.09',
9   AUTHOR       => 'Martyn J. Pearce ',
10   ABSTRACT     => 'provide a progress meter on a standard terminal',
11   PREREQ_PM    => +{ 
12                      'Class::MethodMaker' => '1.02',
13                      'Term::ReadKey' => '2.14',},
14   BUILD_REQUIRES => {
15                      'Capture::Tiny' => '0.12',
16                      'Test::More'    => '0.80',
17                      'Test::Exception' => '0.31',
18                      'File::Temp'    => 0,
19   },
20   EXE_FILES    => [qw(  )],
21   # Need this to stop Makefile treating Build.PL as a producer of Build as a
22   # target for 'all'.
23   PL_FILES     => +{},
24   clean        => +{ FILES => join(' ', qw( Build _build )) },
25   realclean    => +{ FILES => join(' ', qw( Build.PL META.yml
26                                             Makefile.PL
27                                             SIGNATURE
28                                             README INSTALL
29                                             configure make-pm )) },
30 );