The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
######################################################################
# Makefile.PL for PasswordMonkey
# 2011, Mike Schilli <cpan@perlmeister.com>
######################################################################
use ExtUtils::MakeMaker;

my $meta_merge = {
    META_MERGE => {
        resources => {
          repository  => 'https://github.com/ytoolshed/passwordmonkey-perl',
        },
    }
};

WriteMakefile(
    'NAME'         => 'PasswordMonkey',
    'VERSION_FROM' => 'lib/PasswordMonkey.pm', # finds $VERSION
    'PREREQ_PM'    => {
        Expect            => 1.21,
        IO::Stty          => 0.03,
        Log::Log4perl     => 1.00,
        Module::Pluggable => 3.9,
        IO::Pty           => 1.09,
        Term::ReadLine    => 1.01,
        Term::ReadKey     => 2.30,
    }, # e.g., Module::Name => 1.1
    $ExtUtils::MakeMaker::VERSION >= 6.50 ? (%$meta_merge) : (),
    ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
      (ABSTRACT_FROM => 'lib/PasswordMonkey.pm',
       AUTHOR     => 'Mike Schilli <cpan@perlmeister.com>') : ()),
);