-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.PL
43 lines (42 loc) · 1.47 KB
/
Makefile.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
use 5.008008;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
NAME => 'IPlant::TreeRec',
VERSION_FROM => 'lib/IPlant/TreeRec.pm', # finds $VERSION
PREREQ_PM => {
'Apache2::Const' => 0,
'Apache2::RequestUtil' => 0,
'Apache2::REST' => 0,
'Apache2::REST::Handler' => 0,
'Bio::TreeIO' => 0,
'Bio::Tree::NodeNHX' => 0,
'Carp' => 0,
'Class::Std::Utils' => 0,
'Data::Dumper' => 0,
'DBIx::Class' => 0,
'English' => 0,
'Exception::Class' => 0,
'File::Path' => 0,
'File::Spec' => 0,
'HTML::TagCloud' => 0.36,
'IO::Handle' => 0,
'IPC::Run' => 0,
'JSON' => 0,
'List::MoreUtils' => 0,
'Memoize' => 0,
'Perl6::Slurp' => 0,
'Readonly' => 0,
'Test::More' => 0,
'Time::HiRes' => 0,
},
( $] >= 5.005
? ## Add these new keywords supported since 5.005
(
ABSTRACT_FROM => 'lib/IPlant/TreeRec.pm',
AUTHOR => 'Dennis Roberts <[email protected]>'
)
: ()
),
);