-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Makefile.PL
61 lines (60 loc) · 1.99 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'PerlWeekly',
AUTHOR => q{Gabor Szabo <[email protected]>},
VERSION => '0.01',
# VERSION_FROM => 'lib/Perl/Maven.pm',
ABSTRACT => 'PerlWeekly generator',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
PL_FILES => {},
PREREQ_PM => {
'Carp::Always' => 0,
'Cwd' => 0,
'Data::Dumper' => 0,
'Data::ICal' => 0,
'Data::Printer' => 0,
'DateTime' => 0,
'DateTime::Format::ICal' => 0,
'DateTime::Format::ISO8601' => 0,
'DateTime::Format::Strptime' => 0,
'DateTime::Format::W3CDTF' => 0,
'DateTime::Functions' => 0,
'Encode' => 0,
'File::Basename' => 0,
'File::Serialize' => 0,
'Gravatar::URL' => 0,
'JSON' => 0,
'JSON::XS' => 0,
'JSON::Path' => 0,
'List::AllUtils' => 0,
'List::MoreUtils' => 0,
'List::Util' => 0,
'Log::Log4perl' => 0,
'LWP::Simple' => 0,
'MetaCPAN::Client' => 0,
'MIME::Lite' => 0,
'Path::Tiny' => 0,
'PerlX::Maybe' => 0,
'Template' => 0,
'Test::More' => 0,
'Perl::Tidy' => '20140711', # Apparently Test::Code::TidyAll does not explicitly depend on it
'Test::Code::TidyAll' => 0.20,
'Test::Perl::Critic' => 0,
'Text::Wrap' => 0,
'WWW::Mailman' => 0,
'WWW::Shorten::Bitly' => 0,
'XML::RSS' => 0,
'XML::Feed' => 0,
'YAML' => 0,
'Plack::Builder' => 0,
'Plack::Middleware::DirIndex' => 0,
'URL::Encode' => 0,
'Email::SendGrid::V3' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Perl-Maven-*' },
)