-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathBuild.PL
28 lines (26 loc) · 799 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
27
28
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'ElasticSearch',
license => 'perl',
dist_author => q{Clinton Gormley <[email protected]>},
dist_version_from => 'lib/ElasticSearch.pm',
build_requires => {
'Test::Most' => 0,
'POSIX' => 0,
'IO::Socket' => 0,
'File::Temp' => '0.22',
},
add_to_cleanup => ['ElasticSearch-*'],
create_makefile_pl => 'traditional',
requires => {
'LWP::UserAgent' => 0,
'LWP::ConnCache' => 0,
'HTTP::Request' => 0,
'JSON::XS' => 0,
'Data::Dumper' => 0,
'Encode' => 0,
}
);
$builder->create_build_script();