This repository has been archived by the owner on Aug 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Build.PL
101 lines (99 loc) · 3.03 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
98
99
100
101
use 5.006;
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'ModelSeedCore',
dist_abstract => "Core libraries for the Model SEED",
license => 'perl',
dist_author => q{Chris Henry <cshenry@mcs.anl.gov>},
dist_version_from => 'lib/ModelSEED/FIGMODEL.pm',
build_requires => {
'Test::More' => 0,
},
requires => {
"App::Cmd" => 0,
"Archive::Tar" => 0, # core
"Carp" => 0, # core
"CGI" => 0, # core
"Class::Autouse" => 0,
"Class::ISA" => 0,
"Config::Tiny" => 0,
"Cwd" => 0, # core
"DBI" => 0,
"DBD::SQLite" => 0,
"DB_File" => 0,
"Data::Dumper" => 0, # core
"Data::UUID" => 0,
"DateTime" => 0,
"Devel::Size" => 0,
"Digest::MD5" => 0, # core
"Encode" => 0, # core
"Exporter" => 0, # core
"Fcntl" => 0, # core
"File::Basename" => 0, # core
"File::Copy" => 0, # core
"File::Copy::Recursive" => 0,
"File::HomeDir" => 0,
"File::Path" => ">= 2.08", # core
"File::Temp" => 0, # core
"File::stat" => 0, # core
"FileHandle" => 0, # core
"Getopt::Long" => 0, # core
"HTTP::Request" => 0,
"HTTP::Response" => 0,
"IO::Compress::Gzip" => 0, # core
"IO::Socket::INET" => 0, # core
"IO::Uncompress::Gunzip" => 0, # core
"IPC::Open2" => 0, # core
"IPC::Open3" => 0, # core
"IPC::Run" => 0,
"JSON" => 0,
"JSON::Any" => 0,
"JSON::RPC::Client" => 0,
"LWP::Simple" => 0,
"LWP::UserAgent" => 0,
"List::MoreUtils" => 0,
"List::Util" => 0, # core
"MIME::Base64" => 0, # core
"Moose" => 0,
"Moose::Role" => 0,
"Moose::Util::TypeConstraints" => 0,
"MooseX::NonMoose" => 0,
"MooseX::Role::Parameterized" => 0,
"MooseX::Singleton" => 0.27,
"MooseX::Storage" => 0,
"MooseX::Storage::Format::JSON" => 0,
"POSIX" => 0,
"Pod::Usage" => 0, # core
"SOAP::Lite" => 0,
"Scalar::Util" => 0, # core
"Spreadsheet::WriteExcel" => 0,
"Storable" => 0, # core
"Symbol" => 0, # core
"Term::Readkey" => 0,
"Test::More" => 0,
"Tie::IxHash" => 0,
"Time::HiRes" => 0,
"Time::localtime" => 0,
"Time::ParseDate" => 0,
"Try::Tiny" => 0,
"URI" => 0,
"URI::Escape" => 0,
"URI::Split" => 0,
"XML::DOM" => 0,
"XML::LibXML" => 0,
"XML::Simple" => 0,
"XML::SAX::Base" => 0,
"YAML" => 0,
"YAML::Any" => 0,
"YAML::XS" => 0,
"namespace::autoclean" => 0,
},
recommends => {},
recursive_test_files => 1,
add_to_cleanup => [ 'ModelSeedCore-*' ],
create_makefile_pl => 'traditional',
script_files => [qw( bin/ms bin/mapping bin/genome bin/stores bin/model bin/bio )],
);
$builder->create_build_script();