-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.PL
31 lines (29 loc) · 1.06 KB
/
Makefile.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
######################################################################
# Makefile.PL for PasswordMonkey
# 2011, Mike Schilli <[email protected]>
######################################################################
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 <[email protected]>') : ()),
);