-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBuild.PL
36 lines (34 loc) · 969 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
29
30
31
32
33
34
35
36
use 5.006;
use strict;
use warnings FATAL => 'all';
use Module::Build;
my $builder = Module::Build->new(
module_name => 'Gearman::Mesh',
license => 'artistic_2',
dist_author => q{Mike Raynham, SpareRoom <enquiries@mikeraynham.co.uk>},
dist_version_from => 'lib/Gearman/Mesh.pm',
release_status => 'unstable',
configure_requires => {
'Module::Build' => 0,
},
build_requires => {
'File::Which' => 0,
'Proc::Guard' => 0,
'Test::Fatal' => 0,
'Test::More' => 0,
'Test::TCP' => 0,
},
requires => {
'Gearman::XS' => 0.16,
'JSON::XS' => 0,
'Sub::Name' => 0,
},
add_to_cleanup => [ 'Gearman-Mesh-*' ],
create_makefile_pl => 'traditional',
meta_merge => {
resources => {
repository => 'https://github.com/mikeraynham/Gearman-Mesh',
}
},
);
$builder->create_build_script();