-
Notifications
You must be signed in to change notification settings - Fork 0
/
Build.PL
52 lines (51 loc) · 2.04 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
use strict;
use Module::Build;
my $build = Module::Build->new(
create_makefile_pl => 'traditional',
license => 'perl',
module_name => 'WWW::Battie',
dist_version_from => 'lib/WWW/Battie.pm',
requires => {
'Authen::SASL' => 0,
'Class::Accessor' => '0.25',
'CGI' => '2.89',
'Config::IniFiles' => 0,
'Data::TreeDumper' => 0,
'Data::TreeDumper::Renderer::DHTML' => '0.07',
'Date::Parse' => 0,
'DateTime' => 0,
'DBD::mysql' => 4.004,
'DBI' => '1.47',
'DBIx::Class' => '0.08008',
'DBIx::Class::TimeStamp' => '0.05',
'DBIx::Class::InflateColumn::Serializer' => 0,
'Data::Dumper' => '2.12',
'Email::Valid' => 0,
'File::Basename' => '2.71',
'File::Temp' => '0.13',
'File::Copy' => '2.09',
'File::LibMagic' => 0,
'Hash::Merge' => '0.10',
'HTML::Entities' => '1.23',
'HTML::Template::Compiled' => '0.99_001',
'HTML::Template::Compiled::Plugin::HTML_Tags' => '0.05',
'Image::Resize' => '0.5',
'JSON' => 2,
'MIME::Base64' => 3.11,
'MIME::Lite' => 0,
'Moose' => 0,
'Net::Domain::TLD' => 0,
'Number::Format' => 1.73,
'Parse::BBCode' => '0.12_005',
'URI::Escape' => 0,
'URI::Find' => 20090316,
'Text::Markdown' => 0,
'SQL::Translator' => 0,
'Text::Textile' => 0,
'Text::CSV_XS' => 0,
},
reccomends => {},
create_readme => 1,
sign => 0,
);
$build->create_build_script;