File: Build.PL

package info (click to toggle)
nagios-plugins-rabbitmq 1%3A2.0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 368 kB
  • sloc: perl: 1,409; sh: 24; makefile: 15
file content (40 lines) | stat: -rw-r--r-- 853 bytes parent folder | download
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
#!/usr/bin/env perl
use Module::Build;

my $build = Module::Build->new (
  dist_name => "nagios-plugins-rabbitmq",
  dist_version => "2.0.3",
  dist_author => [
    'James Casey <jamesc.000@gmail.com>',
    'Thierno IB. BARRY <ibrahima.br@gmail.com>'
  ],
  dist_abstract => 'Nagios checks for RabbitMQ using the management interface',
  installdirs => 'site',
  script_files => 'scripts',
  license => 'apache',
  module_name => "nagios-plugins-rabbitmq",

  requires => {
    "JSON" => "2.12",
    "LWP::UserAgent" => 0,
    "URI" => "1.35",
    "Pod::Usage" => 0,
    "Getopt::Long" => 0,
  },

  recommends => {
    "Monitoring::Plugin" => 0,
  },

  configure_requires => {
    "Module::Build" => 0,
  },

  build_requires => {
    "Module::Build" => 0,
  },

  keywords => [  "RabbitMQ", "Management", "Nagios" ],
);

$build->create_build_script;