File: Build.PL

package info (click to toggle)
munin 2.0.76-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 7,064 kB
  • sloc: perl: 11,684; java: 1,924; sh: 1,632; makefile: 636; javascript: 365; python: 267
file content (33 lines) | stat: -rw-r--r-- 753 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
use NodeBuilder;

use warnings;
use strict;

my $version = `../getversion`;
chomp($version);

my $build = NodeBuilder->new(
    dist_name      => 'Munin::Node',
    dist_version   => $version,
    dist_author    => 'The Munin Team <munin-users@lists.sourceforge.net>',
    dist_abstract  => 'The Munin Node',
    license        => 'gpl',
    script_files   => [
        '../build/node/_bin/munin-get',
        'bin/munindoc',
    ],
    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;