1######################################################################
2# Makefile.PL for Net::SSH::AuthorizedKeysFile
3# 2005, Mike Schilli <m@perlmeister.com>
4######################################################################
5use ExtUtils::MakeMaker;
6
7my $meta_merge = {
8    META_MERGE => {
9        resources => {
10            repository  => 'http://github.com/mschilli/net-ssh-authorizedkeysfile-perl',
11        },
12    }
13};
14
15WriteMakefile(
16    'NAME'         => 'Net::SSH::AuthorizedKeysFile',
17    'VERSION_FROM' => 'lib/Net/SSH/AuthorizedKeysFile.pm', # finds $VERSION
18    'PREREQ_PM'    => {
19        Test::More       => 0,
20        Text::ParseWords => 0,
21        Log::Log4perl    => 1,
22        File::Temp       => 0,
23        File::Copy       => 0,
24        Digest::MD5      => 0,
25        File::Spec       => 0,
26    }, # e.g., Module::Name => 1.1
27    $ExtUtils::MakeMaker::VERSION >= 6.50 ? (%$meta_merge) : (),
28    'EXE_FILES'    => [ 'eg/authorized-keys-test' ],
29    ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
30      (ABSTRACT_FROM => 'lib/Net/SSH/AuthorizedKeysFile.pm',
31       AUTHOR     => 'Mike Schilli <m@perlmeister.com>') : ()),
32);
33