forked from tsee/Games-Lacuna-Client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.PL
46 lines (45 loc) · 1.58 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
use 5.008000;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
NAME => 'Games::Lacuna::Client',
VERSION_FROM => 'lib/Games/Lacuna/Client.pm', # finds $VERSION
PREREQ_PM => {
'JSON::RPC::Common' => '0',
'HTTP::Request' => '0',
'HTTP::Response' => '0',
'LWP::UserAgent' => '0',
'Data::Dumper' => '0',
'Class::XSAccessor' => '1.07',
'Scalar::Util' => '0',
'URI' => '0',
'Class::MOP' => '0',
'YAML::Any' => '0',
'AnyEvent' => '0',
'Date::Parse' => '0',
'Date::Format' => '0',
'DateTime' => '0',
'Number::Format' => '0',
'FindBin' => '0',
'IO::Interactive' => '0',
'MIME::Lite' => '0',
'Crypt::SSLeay' => '0', # or IO::Socket::SSL
'Exception::Class' => '0',
'Time::HiRes' => '0',
'Try::Tiny' => '0.07',
'namespace::clean' => '0.20',
'JSON::RPC::LWP' => '0.006',
'Moose' => '0',
}, # e.g., Module::Name => 1.1
(
$] >= 5.005
? ## Add these new keywords supported since 5.005
(
ABSTRACT_FROM =>
'lib/Games/Lacuna/Client.pm', # retrieve abstract from module
AUTHOR => 'Steffen Mueller <[email protected]>'
)
: ()
),
);