forked from nagios-plugins-rabbitmq/nagios-plugins-rabbitmq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Build.PL
33 lines (30 loc) · 941 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
#!/usr/bin/env perl
use Module::Build;
my $build = Module::Build->new
(
dist_name => "nagios-plugins-rabbitmq",
dist_version => "1.0.4",
dist_author => 'James Casey ([email protected])',
dist_abstract => 'Nagios checks for RabbitMQ using the management interface',
installdirs => 'site',
script_files => 'scripts',
license => 'apache',
requires => {
"JSON" => "2.12",
"LWP::UserAgent" => 0,
"URI" => "1.35",
"Pod::Usage" => 0,
"Getopt::Long" => 0,
},
recommends => {
"Nagios::Plugin" => "0.27",
},
configure_requires => {
"Module::Build" => 0,
},
build_requires => {
"Module::Build" => 0,
},
keywords => [ "RabbitMQ", "Management", "Nagios" ],
);
$build->create_build_script;