forked from ajobs/NagiBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.PL
More file actions
22 lines (21 loc) · 682 Bytes
/
Copy pathBuild.PL
File metadata and controls
22 lines (21 loc) · 682 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
use Module::Build;
Module::Build->new (
module_name => 'Nagibot',
license => 'perl',
sign => 1,
script_files => 'nagibot.pl',
dist_version_from => 'nagibot.pl',
configure_requires => {
'Module::Build' => '0.38',
},
requires => {
'AnyEvent' => 0,
'AnyEvent::XMPP' => '< 0.6',
'File::Pid' => 0,
'Nagios::Status::ServiceStatus' => 0,
'Nagios::Status::HostStatus' => 0,
'Sys::CpuLoad' => 0,
'YAML' => 0,
'HTML::Entities' => 0,
},
)->create_build_script;