forked from simonwistow/Bot-Infobot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Build.PL
27 lines (24 loc) · 991 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
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,
},
scripts => [ 'bin/infobot', 'bin/infobot-import' ],
create_makefile_pl => 'traditional',
meta_merge => {
resources => {
repository => 'https://github.com/simonwistow/Bot-Infobot',
}
},
);
$build->create_build_script;