forked from stockholmuniversity/Nagios-NRPE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuild.PL
41 lines (38 loc) · 916 Bytes
/
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
36
37
38
39
40
41
#!/usr/bin/perl
use 5.010_000;
use strict;
use warnings;
use Module::Build;
my $build = Module::Build->new(
module_name => 'Nagios::NRPE',
license => 'perl',
dist_author => 'Andreas Marschke <[email protected]>',
meta_merge => {
resources => {
homepage => 'http://github.com/andreas-marschke/nagios-nrpe',
repository => 'git://github.com/andreas-marschke/nagios-nrpe.git'
},
no_index => {
directory => [qw/t xt/],
}
},
configure_requires => {
'Module::Build' => '0.31',
},
build_requires => {
"Test::More" => 0,
"Test::Pod::Coverage" => 0
},
requires => {
"perl" => "5.010_000",
"Convert::Binary::C" => 0,
"constant" => 0,
"IO::Socket" => 0,
"IO::Socket::INET" => 0
},
dynamic_config => 0,
recursive_test_files => 1,
create_license => 1,
test_files => 't/*.t xt/*.t',
);
$build->create_build_script;