forked from wtsi-npg/npg_seq_common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Build.PL
86 lines (76 loc) · 3.87 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
use strict;
use warnings;
use npg_tracking::util::build;
my $requires = {
'autodie' => '2.10',
'Carp' => '1.04',
'Cwd' => 0,
'Digest::MD5' => 0,
'English' => '1.02',
'Exporter' => '5.63',
'Fatal' => 0,
'Fcntl' => 0,
'File::Basename' => 0,
'File::chdir' => 0,
'File::Compare' => 0,
'File::Copy' => 0,
'File::Path' => 0,
'File::Slurp' => '9999.13',
'File::Spec' => 0,
'File::Spec::Functions' => 0,
'File::Temp' => 0,
'File::Which' => 0,
'FindBin' => '1.47',
'IO::File' => 0,
'IO::Tee' => 0,
'IPC::Open3' => 0,
'lib' => '0.5565',
'List::Util' => '1.21',
'MIME::Lite' => '3.024',
'Moose' => '0.93',
'Moose::Meta::Class' => '0',
'Moose::Role' => '0.93',
'MooseX::Role::Parameterized' => '0',
'Moose::Util::TypeConstraints' => 0,
'MooseX::ClassAttribute' => 0,
'MooseX::Storage' => 0,
'Parallel::ForkManager' => 0,
'Perl6::Slurp' => '0.03',
'Pod::Usage' => '0',
'POSIX' => '1.09',
'Readonly' => '1.03',
'Readonly::XS' => 0,
'strict' => '1.03',
'warnings' => '1.05',
'npg_tracking::data::reference::list' => 0,
'npg_tracking::util::abs_path' => 0,
};
my $builder = npg_tracking::util::build->new(
'module_name' => 'npg_seq_common',
'dist_author' => q(wtsi-npg <[email protected]>),
'dist_abstract' =>
'General purpose scripts and modules used by WTSI production pipeline and manual data processing',
'license' => 'gpl',
'dist_version' => npg_tracking::util::build->git_tag(),
'configure_requires' => {
'ExtUtils::CBuilder' => 0,
'npg_tracking::util::build' => 0,
},
'build_requires' => {
'ExtUtils::CBuilder' => 0,
'npg_tracking::util::build' => 0,
'Test::Cmd' => 0,
'Test::Compile' => 0,
'Test::Distribution' => 0,
'Test::Deep' => '0.103',
'Test::Exception' => '0.27',
'Test::More' => '0.86',
'Test::Pod' => 0,
'Test::Pod::Coverage' => 0,
'Test::Perl::Critic' => 0,
},
'requires' => $requires,
'dist' => { COMPRESS => 'gzip', SUFFIX => 'gz', },
);
$builder->create_build_script();
1;