forked from mschilli/oauth-cmdline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
32 lines (30 loc) · 1.1 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
32
######################################################################
# Makefile.PL for OAuth::Cmdline
# 2014, Mike Schilli <[email protected]>
######################################################################
use ExtUtils::MakeMaker;
my $meta_merge = {
META_MERGE => {
resources => {
repository => 'http://github.com/mschilli/oauth-cmdline.git',
},
}
};
WriteMakefile(
'NAME' => 'OAuth::Cmdline',
'VERSION_FROM' => 'lib/OAuth/Cmdline.pm', # finds $VERSION
'PREREQ_PM' => {
Log::Log4perl => 1,
Moo => 1,
URI => 1,
YAML => 0.90,
HTTP::Request::Common => 1,
JSON => 1,
LWP::UserAgent => 1,
MIME::Base64 => 1,
}, # 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/OAuth/Cmdline.pm',
AUTHOR => 'Mike Schilli <[email protected]>') : ()),
);