-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
66 lines (62 loc) · 1.9 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
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'App::AWS::CloudWatch::Monitor',
AUTHOR => 'Best Practical Solutions, LLC <modules@bestpractical.com>',
ABSTRACT_FROM => 'lib/App/AWS/CloudWatch/Monitor.pm',
VERSION_FROM => 'lib/App/AWS/CloudWatch/Monitor.pm',
LICENSE => 'apache_2_0',
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/bestpractical/app-aws-cloudwatch-monitor.git',
web => 'https://github.com/bestpractical/app-aws-cloudwatch-monitor',
},
},
},
MIN_PERL_VERSION => '5.10.1',
BUILD_REQUIRES => {
'ExtUtils::MakeMaker' => '6.64', # for TEST_REQUIRES
},
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => '6.64',
},
TEST_REQUIRES => {
'File::Find' => 0,
'File::Spec' => 0,
'Test::Exception' => '0.42', # recommended by Test2
'Test::More' => '0.98', # for subtest()
'Test::Warnings' => 0,
},
PREREQ_PM => {
'base' => 0,
'Capture::Tiny' => 0,
'Config::Tiny' => 0,
'Compress::Zlib' => 0,
'constant' => 0,
'Digest::SHA' => 0,
'Exporter' => 0,
'File::Basename' => 0,
'FindBin' => 0,
'Getopt::Long' => '2.45', # 2.36 is required for options we need, but at least 2.45 for bugfixes
'List::Util' => 0,
'LWP' => 6,
'LWP::Protocol::https' => 0,
'LWP::Simple' => 0,
'Module::Loader' => 0,
'parent' => 0,
'Pod::Usage' => '1.67', # rewrite in 1.62, bugfixes in 1.67
'strict' => 0,
'Time::Piece' => 0,
'Try::Tiny' => 0,
'URI::Escape' => 0,
'warnings' => 0,
},
EXE_FILES => [
'bin/aws-cloudwatch-monitor',
],
test => {
TESTS => 't/*.t',
},
);