-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
33 lines (30 loc) · 841 Bytes
/
Makefile.PL
File metadata and controls
33 lines (30 loc) · 841 Bytes
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
use ExtUtils::MakeMaker;
my %opts = (
NAME => 'Contentity',
VERSION => 0.01,
PMLIBDIRS => [ 'lib' ],
PREREQ_PM => {
Badger => 0.092,
Template => 3.000,
AppConfig => 1.52,
'JSON' => 2.59,
'YAML' => 0.84,
'Email::Sender' => 1.3,
'Email::Simple' => 2.216,
'Email::MIME' => 1.946,
'Plack::Request::WithEncoding' => 0.12,
# 'IPC::Run' => 0,
},
dist => {
COMPRESS => 'gzip',
SUFFIX => 'gz',
},
test => {
TESTS => 't/*/*.t',
},
);
if ($ExtUtils::MakeMaker::VERSION >= 5.43) {
$opts{ AUTHOR } = 'Andy Wardley <abw@wardley.org>';
$opts{ ABSTRACT } = 'Web site metadata management system',
}
WriteMakefile( %opts );