version up
[mrsh.git] / Makefile.PL
blob996d337fb311cfc01000f59debcad3122bc8c58b
2 require 5.006001;
4 use strict;    
5 use warnings;  
6 use ExtUtils::MakeMaker;
8 WriteMakefile(
9     NAME          => 'App::MrShell',
10     VERSION_FROM  => 'MrShell.pm',
11     AUTHOR        => 'Paul Miller <jettero@cpan.org>',
12     EXE_FILES     => [ 'mrsh' ],
14     PREREQ_PM => {
15         'Config::Tiny'          => 0,
16         'POE'                   => 0,
17         'Term::ANSIColor'       => 0,
18         'Text::Balanced'        => 0,
19     },  
21     ($ExtUtils::MakeMaker::VERSION ge '6.48'?
22         (MIN_PERL_VERSION => 5.006001,
23             META_MERGE => {
24                 keywords => ['ssh'],
25                 resources=> {
26                     repository => 'http://github.com/jettero/mrsh',
27                 },  
28             },  
30         LICENSE => 'GPL',
31     ) : ()),
33     clean => { FILES => 'FILES dist test_file.*' },
34 );