-
Notifications
You must be signed in to change notification settings - Fork 11
/
Build.PL
executable file
·36 lines (32 loc) · 1.14 KB
/
Build.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
#!/usr/local/bin/perl -w
use strict;
use Module::Build;
my $build = Module::Build->new(
meta_merge => {
resources => {
repository => 'http://github.com/duncs/perl-nagios-object',
bugtracker =>
'https://rt.cpan.org/Public/Dist/Display.html?Name=Nagios-Object',
homepage => 'http://github.com/duncs/perl-nagios-object',
ci => 'https://travis-ci.org/duncs/perl-nagios-object',
coverage =>
'https://coveralls.io/github/duncs/perl-nagios-object',
},
},
dist_name => 'Nagios-Object',
dist_version => "0.21.20",
dist_author => 'Duncan Ferguson <[email protected]>',
dist_abstract => 'Nagios::Object - Nagios object configuration parsing.',
license => 'gpl',
requires => { perl => '5.6.1' },
build_requires => {
'Test::More' => 0.01,
'Test::Exception' => 0.01,
'Module::Build' => 0.26,
'Data::Dumper' => 0.01,
'Scalar::Util' => 0.01,
'Test::NoWarnings' => 0.08,
'List::Compare' => 0.37,
}
);
$build->create_build_script();