-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathBuild.PL
More file actions
executable file
·34 lines (31 loc) · 986 Bytes
/
Build.PL
File metadata and controls
executable file
·34 lines (31 loc) · 986 Bytes
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
#!/usr/bin/perl
use warnings;
use strict;
use Module::Build;
Module::Build->new(
module_name => 'Bot::BasicBot::Pluggable',
license => 'perl',
requires => {
'perl' => '5.8.0',
'Bot::BasicBot' => '0.30',
'Test::More' => '0.01',
'URI::Title' => '0.1',
'URI::Find::Simple' => 0,
'DBI' => 0,
'DBD::SQLite' => 0,
'Getopt::Long' => 0,
'DBM::Deep' => 0,
'Text::Unidecode' => 0,
'LWP::UserAgent' => 0,
},
recommends => { 'XML::Feed' => 0, },
script_files => [ 'bin/bot-basicbot-pluggable', ],
create_makefile_pl => 'passthrough',
create_readme => 1,
meta_merge => {
resources => {
repository => 'http://github.com/jerakeen/bot-basicbot-pluggable',
},
author => ['Mario Domgoergen <mario@domgoergen.com>']
}
)->create_build_script;