-
Notifications
You must be signed in to change notification settings - Fork 1
/
Build.PL
27 lines (24 loc) · 1.23 KB
/
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
use strict;
use Module::Build;
my $build = Module::Build
->new( module_name => "Bot::Infobot",
license => 'perl',
dist_version => '1.0',
requires => {
'Test::More' => 0,
'DBI' => 0,
'Config::Tiny' => 0,
'Bot::BasicBot::Pluggable' => '0.50',
'Module::Pluggable' => 0,
'Text::CSV' => 0,
'AnyDBM_File' => 0,
# 'Bot::BasicBot::Pluggable::Module::Fun' => '0.9',
# 'Bot::BasicBot::Pluggable::Module::Weather' => '0.9',
# 'Bot::BasicBot::Pluggable::Module::Tools' => '0.95',
# 'Bot::BasicBot::Pluggable::Module::Search' => '0.96',
# 'Bot::BasicBot::Pluggable::Module::Network' => '0.9',
},
scripts => [ 'bin/infobot', 'bin/infobot-import' ],
create_makefile_pl => 'traditional',
);
$build->create_build_script;