-
Notifications
You must be signed in to change notification settings - Fork 0
/
Build.PL
56 lines (56 loc) · 1.53 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
use Module::Build qw();
Module::Build->new(
add_to_cleanup => [ 'Data-HAL-*' ],
build_requires => {
'Data::Visitor::Callback' => 0,
'File::Slurp' => 0,
'JSON' => 0,
'Log::Any::Adapter' => 0,
'Log::Any::Adapter::FileHandle' => 0,
'strictures' => 0,
'Test::Fatal' => 0,
'Test::More' => 0,
},
configure_requires => {
'Module::Build' => 0.40,
},
dist_version_from => 'lib/Data/HAL.pm',
dynamic_config => 0,
license => 'perl',
meta-spec => {
url => 'http://module-build.sourceforge.net/META-spec-v1.4.html',
version => '1.4',
},
module_name => 'Data::HAL',
no_index => {
file => [
'lib/Data/HAL/URI/NamespaceMap.pm',
],
},
requires => {
'boolean' => 0,
'Clone' => 0,
'Data::Visitor::Callback' => 0,
'failures' => 0,
'HTTP::Headers::Util' => 0,
'JSON' => 0,
'Log::Any' => 0,
'MIME::Type' => 0,
'Moo' => 0,
'perl' => '5.008',
'Safe::Isa' => 0,
'Scalar::Util' => 0,
'strictures' => 0,
'Types::Standard' => 0,
'URI' => 0,
'URI::IRI' => 0,
'URI::NamespaceMap' => 0,
'URI::Template' => 0,
'XML::RegExp' => 0,
},
resources => {
license => 'http://dev.perl.org/licenses/',
bugtracker => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Data-HAL',
repository => 'https://github.com/daxim/Data-HAL',
},
)->create_build_script;