-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
133 lines (132 loc) · 4.28 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
use 5.006;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Lim',
AUTHOR => q{Jerry Lundström <lundstrom.jerry@gmail.com>},
VERSION_FROM => 'lib/Lim.pm',
ABSTRACT_FROM => 'lib/Lim.pm',
EXE_FILES => [ 'bin/lim-agentd', 'bin/lim-cli' ],
(! eval { ExtUtils::MakeMaker->VERSION(6.3002) } ? () :
(LICENSE => 'perl')
),
(eval { ExtUtils::MakeMaker->VERSION(6.5503) } ?
(
BUILD_REQUIRES => {
'Test::More' => 0,
'common::sense' => 3,
'AnyEvent' => 5,
'Data::Dumper' => 2.124,
'Digest::SHA' => 5,
'Fcntl' => 1.06,
'File::Temp' => 0.2,
'Getopt::Long' => 2,
'HTTP::Request' => 5,
'HTTP::Response' => 5,
'HTTP::Status' => 5,
'IO::File' => 0,
'IO::Handle' => 0,
'JSON::XS' => 2,
'Log::Dispatch::Syslog' => 1.18,
'Log::Log4perl' => 1,
'Log::Log4perl::Appender::Lim::CLI' => 0.12,
'LWP::MediaTypes' => 5.822,
'Net::SSLeay' => 1.35,
'Module::Find' => 0,
'Pod::Usage' => 1,
'Scalar::Util' => 1,
'SOAP::Lite' => 0.71,
'SOAP::Transport::HTTP' => 0.71,
'XMLRPC::Lite' => 0.71,
'XMLRPC::Transport::HTTP::Server' => 0.12,
'URI' => 1,
'URI::Escape' => 3.29,
'URI::Split' => 0,
'YAML::Any' => 0.70
},
PREREQ_PM => {
'common::sense' => 3,
'AnyEvent' => 5,
'Data::Dumper' => 2.124,
'Digest::SHA' => 5,
'Fcntl' => 1.06,
'File::Temp' => 0.2,
'Getopt::Long' => 2,
'HTTP::Request' => 5,
'HTTP::Response' => 5,
'HTTP::Status' => 5,
'IO::File' => 0,
'IO::Handle' => 0,
'JSON::XS' => 2,
'Log::Dispatch::Syslog' => 1.18,
'Log::Log4perl' => 1,
'Log::Log4perl::Appender::Lim::CLI' => 0.12,
'LWP::MediaTypes' => 5.822,
'Net::SSLeay' => 1.35,
'Module::Find' => 0,
'Pod::Usage' => 1,
'Scalar::Util' => 1,
'SOAP::Lite' => 0.71,
'SOAP::Transport::HTTP' => 0.71,
'XMLRPC::Lite' => 0.71,
'XMLRPC::Transport::HTTP::Server' => 0.12,
'URI' => 1,
'URI::Escape' => 3.29,
'URI::Split' => 0,
'YAML::Any' => 0.70,
'DBI' => 1.612
}
) : (
PREREQ_PM => {
'Test::More' => 0,
'common::sense' => 3,
'AnyEvent' => 5,
'Data::Dumper' => 2.124,
'Digest::SHA' => 5,
'Fcntl' => 1.06,
'File::Temp' => 0.2,
'Getopt::Long' => 2,
'HTTP::Request' => 5,
'HTTP::Response' => 5,
'HTTP::Status' => 5,
'IO::File' => 0,
'IO::Handle' => 0,
'JSON::XS' => 2,
'Log::Dispatch::Syslog' => 1.18,
'Log::Log4perl' => 1,
'Log::Log4perl::Appender::Lim::CLI' => 0.12,
'LWP::MediaTypes' => 5.822,
'Net::SSLeay' => 1.35,
'Module::Find' => 0,
'Pod::Usage' => 1,
'Scalar::Util' => 1,
'SOAP::Lite' => 0.71,
'SOAP::Transport::HTTP' => 0.71,
'XMLRPC::Lite' => 0.71,
'XMLRPC::Transport::HTTP::Server' => 0.12,
'URI' => 1,
'URI::Escape' => 3.29,
'URI::Split' => 0,
'YAML::Any' => 0.70,
'DBI' => 1.612
}
)),
META_MERGE => {
recommends => {
'AnyEvent::ReadLine::Gnu' => 1,
'URI::Escape::XS' => 0.11,
}
},
(! eval { ExtUtils::MakeMaker->VERSION(6.46) } ? () :
(META_ADD => {
resources => {
homepage => 'https://github.com/jelu/lim/wiki',
repository => 'https://github.com/jelu/lim',
bugtracker => 'https://github.com/jelu/lim/issues',
},
})
),
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Lim-*' },
);