require 5.006001; use strict; use warnings; use ExtUtils::MakeMaker; WriteMakefile( NAME => 'App::MrShell', VERSION_FROM => 'MrShell.pm', AUTHOR => 'Paul Miller ', EXE_FILES => [ 'mrsh' ], PREREQ_PM => { 'Config::Tiny' => 0, 'POE' => 0, 'Term::ANSIColor' => 0, 'Text::Balanced' => 0, }, ($ExtUtils::MakeMaker::VERSION ge '6.48'? (MIN_PERL_VERSION => 5.006001, META_MERGE => { keywords => ['ssh'], resources=> { repository => 'http://github.com/jettero/mrsh', }, }, LICENSE => 'GPL', ) : ()), clean => { FILES => 'FILES dist test_file.*' }, );