-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
32 lines (31 loc) · 1.01 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
use 5.008;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
NAME => 'ADAMK::Lacuna::Client',
VERSION_FROM => 'lib/ADAMK/Lacuna/Client.pm',
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',
},
(
$] >= 5.005
? # Add these new keywords supported since 5.005
(
# Retrieve abstract from module
ABSTRACT_FROM => 'lib/ADAMK/Lacuna/Client.pm',
AUTHOR => 'Steffen Mueller <[email protected]>'
)
: ()
),
);