-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
37 lines (36 loc) · 1.04 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
use 5.006;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Eve',
AUTHOR => q{Igor Zinovyev <[email protected]>},
VERSION_FROM => 'lib/Eve.pm',
ABSTRACT_FROM => 'lib/Eve.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
PL_FILES => {},
PREREQ_PM => {
'Contextual::Return' => 0,
'Test::More' => 0,
'Test::Class' => 0,
'PadWalker' => 0,
'Test::MockObject' => 0,
'Exception::Class' => 0,
'Tie::IxHash' => 0,
'Template' => 0,
'DateTime' => 0,
'DBD::Pg' => 0,
'URI' => 0,
'CGI::Session' => 0,
'Email::Sender::Simple' => 0,
'DateTime::Format::Pg' => 0,
'DateTime::Format::HTTP' => 0,
'Hash::MultiValue' => 0,
'JSON::XS' => 0,
'Plack::Request' => 0
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Eve-*' },
);