File: Build.PL

package info (click to toggle)
munin 1.4.5-3%2Bdeb6u1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze-lts
  • size: 4,988 kB
  • ctags: 806
  • sloc: perl: 8,936; sh: 3,105; java: 1,754; makefile: 585; python: 143
file content (26 lines) | stat: -rw-r--r-- 590 bytes parent folder | download | duplicates (8)
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
use NodeBuilder;

use warnings;
use strict;

my $build = NodeBuilder->new(
    dist_name      => 'Munin::Node',
    dist_version   => '0.0.0',
    dist_author    => 'The Munin Team <fix@example.com>',
    dist_abstract  => 'The Munin Node',
    license        => 'gpl',
    requires       => {
        perl            => '5',
        'Net::Server'   => 0,
        'Time::HiRes'   => 0,
        #'Munin::Common' => 0,
    },
    build_requires => {},
    recommends     => {
        #'Net::SSLeay' => 0, In Munin::Common?
        'Net::SNMP'   => 0,
    },
);
$build->create_build_script;