-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuild.PL
97 lines (93 loc) · 4.82 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#!/usr/bin/perl
use strict;
use warnings;
use Module::Build qw();
my $builder = Module::Build->new(
dist_name => 'NGCP::BulkProcessor',
dist_abstract => 'Framework for parallel/distributed processing of record blocks',
license => 'GPL_3',
dist_author => 'Rene Krenn <[email protected]>',
dist_version_from => 'lib/NGCP/BulkProcessor/Globals.pm',
perl_version_from => 'lib/NGCP/BulkProcessor/Globals.pm',
meta_merge => {
'meta-spec' => {
version => 2,
},
prereqs => {
test => {
requires => {
'Module::Runtime' => 0,
'Test::More' => 0,
'Test::Unit::Procedural' => 0,
},
},
runtime => {
requires => {
'Config::Any' => 0,
'DBD::CSV' => '0.26',
'DBD::SQLite' => '1.29',
'DBD::mysql' => '4.014',
'DBI' => '1.608',
'Data::Dump' => 0,
'Data::Rmap' => 0,
'Data::Validate::IP' => 0,
'Date::Calc' => 0,
'Date::Manip' => 0,
'DateTime' => 0,
'DateTime::Format::ISO8601' => 0,
'DateTime::Format::Strptime' => 0,
'DateTime::TimeZone' => 0,
'Digest::MD5' => 0,
'Email::MIME' => 0,
'Email::MIME::Attachment::Stripper' => 0,
'Excel::Reader::XLSX' => 0,
'Gearman::Client' => 0,
'Gearman::Task' => 0,
'Gearman::Worker' => 0,
'HTML::Entities' => 0,
'HTML::PullParser' => 0,
'HTTP::Request' => 0,
'HTTP::Status' => 0,
'IO::Socket::SSL' => 0,
'IO::Uncompress::Unzip' => 0,
'JSON' => 0,
'LWP::UserAgent' => 0,
'List::Util' => 0,
'Locale::Recode' => 0,
'Log::Log4Perl' => 0,
'MIME::Base64' => 0,
'MIME::Lite' => 0,
'MIME::Parser' => 0,
'Mail::IMAPClient' => 0,
'Marpa::R2' => 0,
'Net::Address::IP::Local' => 0,
'Net::SMTP' => 0,
'PHP::Serialization' => 0,
'Spreadsheet::ParseExcel' => 0,
'Spreadsheet::ParseExcel::FmtUnicode' => 0,
'String::MkPasswd::mkpasswd' => 0,
'Sys::CpuAffinity' => 0,
'Text::CSV_XS' => 0,
'Tie::IxHash' => 0,
'Time::HiRes' => 0,
'Time::Warp' => 0,
'URI' => 0,
'URI::Find' => 0,
'UUID' => 0,
'XML::Dumper' => '0.81',
'YAML::XS' => 0,
},
suggests => {
'DBD::ODBC' => '1.50',
'DBD::Oracle' => '1.21',
'DBD::Pg' => '2.17.2',
},
},
},
},
add_to_cleanup => [ 'NGCP-BulkProcessor-*' ],
);
$builder->add_build_element('pl');
$builder->add_build_element('cfg');
$builder->add_build_element('yml');
$builder->create_build_script;