forked from Perl-Evozon/PearlBee
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathMakefile.PL
67 lines (60 loc) · 2.32 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
62
63
64
65
66
67
use strict;
use warnings;
use ExtUtils::MakeMaker;
# Normalize version strings like 6.30_02 to 6.3002,
# so that we can do numerical comparisons on it.
my $eumm_version = $ExtUtils::MakeMaker::VERSION;
$eumm_version =~ s/_//;
WriteMakefile(
NAME => 'PearlBee',
AUTHOR => q{Andrei Cacio <[email protected]},
VERSION_FROM => 'lib/PearlBee.pm',
ABSTRACT => 'PealBee is an open source blogging platform',
(
$eumm_version >= 6.3001
? ( 'LICENSE' => 'perl' )
: ()
),
PL_FILES => {},
PREREQ_PM => {
'Parse::CPAN::Meta' => 0,
'CPAN::Meta::Check' => 0,
'Test::Warnings' => 0,
'Term::ANSIColor' => 0,
'Dancer2' => 0.136000,
'Dancer2::Plugin::DBIC' => 0,
'DBIx::Class::TimeStamp' => 0,
'DateTime' => 0,
'Date::Period::Human' => 0,
'Digest::Bcrypt' => 0,
'Data::Entropy::Algorithms' => 0,
'Dancer2::Plugin::REST' => 0,
'Dancer2::Plugin::Feed' => 0,
'Dancer2::Plugin::reCAPTCHA' => 0,
'Captcha::reCAPTCHA::V2' => 0,
'Data::GUID' => 0,
'String::Dirify' => 0,
'String::Random' => 0,
'String::Util' => 0,
'Data::Pageset' => 0,
'Text::Markdown' => 0,
'Imager' => 0,
'WWW::OAuth' => 0,
'IO::All' => 0,
'MIME::Lite' => 0,
'MIME::Lite::TT' => 0,
'Email::MIME' => 0,
'Email::Sender::Simple' => 0,
'Email::Sender::Transport::SMTP::TLS' => 0,
'Email::Template' => 0,
'Moose' => 0,
'XML::Simple' => 0,
'Search::Elasticsearch' => 0,
# Dynamically loaded dependencies now
'Gravatar::URL' => 0,
'HTML::Scrubber::StripScripts' => 0,
'DBD::Pg' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'PearlBee-*' },
);