-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathMakefile.PL
More file actions
39 lines (33 loc) · 1.46 KB
/
Makefile.PL
File metadata and controls
39 lines (33 loc) · 1.46 KB
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
# IMPORTANT: if you delete this file your app will not work as
# expected. you have been warned
use inc::Module::Install;
name 'Monitoring-Livestatus';
all_from 'lib/Monitoring/Livestatus.pm';
perl_version '5.006';
license 'perl';
resources(
'homepage', => 'http://search.cpan.org/dist/Monitoring-Livestatus/',
'bugtracker' => 'http://github.com/sni/Monitoring-Livestatus/issues',
'repository', => 'http://github.com/sni/Monitoring-Livestatus',
);
requires 'IO::Socket::UNIX';
requires 'IO::Socket::IP';
requires 'IO::Select';
requires 'Test::More' => '0.87';
requires 'utf8';
requires 'Encode';
requires 'Cpanel::JSON::XS';
# test requirements
# these requirements still make it into the META.yml, so they are commented so far
#feature ('authortests',
# -default => 0,
# 'File::Copy::Recursive' => 0,
# 'Test::Pod' => 1.14,
# 'Test::Perl::Critic' => 0,
# 'Test::Pod::Coverage' => 0,
# 'Perl::Critic::Policy::Dynamic::NoIndirect' => 0,
# 'Perl::Critic::Policy::NamingConventions::ProhibitMixedCaseSubs' => 0,
# 'Perl::Critic::Policy::ValuesAndExpressions::ProhibitAccessOfPrivateData' => 0,
#);
auto_install;
WriteAll;