-
Notifications
You must be signed in to change notification settings - Fork 4
/
Build.PL
102 lines (91 loc) · 2.49 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
102
# This file was automatically generated by Dist::Zilla::Plugin::ModuleBuild v6.010.
use strict;
use warnings;
use Module::Build 0.28;
my %module_build_args = (
"build_requires" => {
"Module::Build" => "0.28"
},
"configure_requires" => {
"Module::Build" => "0.28"
},
"dist_abstract" => "A conveyor belt which transports data from a data source to a data sink.",
"dist_author" => [
"Matthias Vandermaesen <matthias.vandermaesen\@vlaamsekunstcollectie.be>"
],
"dist_name" => "Datahub-Factory",
"dist_version" => "1.77",
"license" => "gpl",
"module_name" => "Datahub::Factory",
"recursive_test_files" => 1,
"requires" => {
"App::Cmd" => 0,
"Catmandu" => "1.0603",
"Catmandu::DBI" => 0,
"Catmandu::Importer::XML" => 0,
"Catmandu::LIDO" => 0,
"Catmandu::OAI" => 0,
"Catmandu::Solr" => 0,
"Catmandu::Store::Datahub" => 0,
"Config::Onion" => 0,
"Config::Simple" => 0,
"DBI" => 0,
"DateTime" => 0,
"HTTP::Headers" => 0,
"HTTP::Request::Common" => 0,
"HTTP::Request::StreamingUpload" => 0,
"JSON" => 0,
"LWP::Protocol::https" => 0,
"LWP::UserAgent" => 0,
"Log::Any" => 0,
"Log::Any::Adapter" => 0,
"Log::Any::Adapter::Log4perl" => 0,
"Log::Log4perl" => 0,
"Module::Load" => 0,
"Moo" => 0,
"MooX::Aliases" => 0,
"MooX::Role::Logger" => 0,
"Moose::Role" => 0,
"Ref::Util" => 0,
"Sub::Exporter" => 0,
"Term::ANSIColor" => 0,
"Throwable::Error" => 0,
"Try::Tiny" => 0,
"Try::Tiny::ByClass" => 0,
"URI::URL" => 0,
"XML::LibXML" => 0,
"namespace::clean" => 0,
"perl" => "5.008005"
},
"script_files" => [
"bin/dhconveyor"
],
"test_requires" => {
"Log::Any::Adapter::Log4perl" => 0,
"Log::Any::Test" => "1.03",
"Log::Log4perl" => 0,
"Module::Build" => "0.28",
"Test::Deep" => "0.112",
"Test::Exception" => "0.43",
"Test::LWP::UserAgent" => 0,
"Test::More" => "0.96",
"Test::Pod" => 0
}
);
my %fallback_build_requires = (
"Log::Any::Adapter::Log4perl" => 0,
"Log::Any::Test" => "1.03",
"Log::Log4perl" => 0,
"Module::Build" => "0.28",
"Test::Deep" => "0.112",
"Test::Exception" => "0.43",
"Test::LWP::UserAgent" => 0,
"Test::More" => "0.96",
"Test::Pod" => 0
);
unless ( eval { Module::Build->VERSION(0.4004) } ) {
delete $module_build_args{test_requires};
$module_build_args{build_requires} = \%fallback_build_requires;
}
my $build = Module::Build->new(%module_build_args);
$build->create_build_script;