-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.PL
More file actions
34 lines (32 loc) · 1.02 KB
/
Build.PL
File metadata and controls
34 lines (32 loc) · 1.02 KB
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
use strict;
use warnings;
use Module::Build;
Module::Build->new(
module_name => 'Object::Lazy',
license => 'perl',
dist_abstract => 'Object::Lazy - create objects late from non-owned classes',
dist_author => 'Steffen Winkler <steffenw at cpan.org>',
dist_version_from => 'lib/Object/Lazy.pm',
requires => {
perl => '5.006',
Carp => 0, # perl dist
'Try::Tiny' => 0, #perl dist
},
build_requires => {
'Test::NoWarnings' => 0,
'Test::Exception' => 0,
'Test::Differences' => '0.60',
Cwd => 0, # perl dist
'Test::More' => 0, # dist Test-Simple
'Params::Validate' => 0,
},
recommends => {
'Test::Pod' => '1.14',
'Test::Pod::Coverage' => '1.04',
},
create_makefile_pl => 'traditional',
recursive_test_files => 0,
add_to_cleanup => [ qw(
META.yml *.bak *.gz Makefile.PL
) ],
)->create_build_script;