forked from Perl-Evozon/PearlBee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
41 lines (39 loc) · 1.47 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
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 => {
'Test::More' => 0,
'YAML' => 0,
'Dancer2' => 0.11,
'Dancer2::Plugin::DBIC' => 0,
'Authen::Captcha' => 0,
'Digest::SHA1' => 0,
'Digest::Bcrypt' => 0,
'Data::Entropy::Algorithms' => 0,
'MIME::Base64' => 0,
'String::Dirify' => 0,
'String::Util' => 0,
'DateTime::Format::Strptime' => 0,
'Crypt::RandPasswd' => 0,
'Email::MIME' => 0,
'Email::Sender::Simple' => 0,
'Template::Plugin::HTML::Strip' => 0,
'Email::Template' => 0,
'Gravatar::URL' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'PearlBee-*' },
);