forked from munin-monitoring/munin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuild.PL
28 lines (26 loc) · 791 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
use MasterBuilder;
use warnings;
use strict;
my $build = MasterBuilder->new(
dist_name => 'Munin::Master',
dist_version => '0.0.0',
dist_author => 'The Munin Team <[email protected]>',
dist_abstract => 'The Munin Master',
license => 'gpl',
requires => {
perl => '5',
'Digest::MD5' => 0,
'HTML::Template' => 0,
'Log::Log4perl' => 0,
'Storable' => 0,
'Text::Balanced' => 0,
'Time::HiRes' => 0,
'Getopt::Long' => 0,
#'Munin::Common' => 0,
},
build_requires => {},
recommends => {
#'Net::SSLeay' => 0, In Munin::Common?
},
);
$build->create_build_script;