File: Build.PL

package info (click to toggle)
libnagios-object-perl 0.21.20-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,032 kB
  • sloc: perl: 3,198; makefile: 9
file content (33 lines) | stat: -r-xr-xr-x 1,001 bytes parent folder | download | duplicates (4)
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/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',
        },
    },

    dist_name      => 'Nagios-Object',
    dist_version   => "0.21.20",
    dist_author    => 'Duncan Ferguson <duncs@cpan.org>',
    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();