-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMakefile.PL
39 lines (37 loc) · 997 Bytes
/
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
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Zabbix::Check',
VERSION_FROM => 'lib/Zabbix/Check.pm',
MIN_PERL_VERSION => '5.010001',
PREREQ_PM => {
'JSON' => '2.90',
'Net::NTP' => '1.5',
'Lazy::Utils' => '1.22',
'Time::HiRes' => '1.9732',
},
EXE_FILES => [qw(
)],
AUTHOR => 'Orkun Karaduman <orkunkaraduman@gmail.com>',
ABSTRACT => 'System and service checks for Zabbix',
LICENSE => 'gpl_3',
META_MERGE => {
'meta-spec' => {
version => 2
},
resources => {
homepage => 'https://metacpan.org/release/Zabbix-Check/tree/master',
license => 'https://www.gnu.org/licenses/gpl-3.0.html',
repository => {
type => 'git',
url => 'git://git@github.com:orkunkaraduman/Zabbix-Check.git',
web => 'https://github.com/orkunkaraduman/Zabbix-Check',
},
bugtracker => {
web => 'https://github.com/orkunkaraduman/Zabbix-Check/issues',
mailto => 'bug-Zabbix-Check@rt.cpan.org',
},
},
},
);