-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.PL
More file actions
37 lines (35 loc) · 1.07 KB
/
Build.PL
File metadata and controls
37 lines (35 loc) · 1.07 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
35
36
37
use strict;
use warnings;
use Module::Build;
Module::Build->new(
module_name => 'Hash::Map',
license => 'perl',
dist_abstract => 'Hash::Map - Manipulate hashes map like',
dist_author => 'Steffen Winkler <steffenw at cpan.org>',
dist_version_from => 'lib/Hash/Map.pm',
requires => {
perl => '5.006',
parent => 0,
version => 0,
Carp => 0,
Clone => 0,
'Exporter::Tiny' => 0,
'Scalar::Util' => 0,
'Try::Tiny' => 0,
},
build_requires => {
'Test::More' => 0, # dist Test-Simple
'Test::NoWarnings' => '1.03',
'Test::Differences' => '0.60',
},
recommends => {
'Test::Pod' => '1.14',
'Test::Pod::Coverage' => '1.04',
'Pod::Coverage::Moose' => 0,
},
create_makefile_pl => 'traditional',
recursive_test_files => 0,
add_to_cleanup => [ qw(
META.yml *.bak *.gz Makefile.PL
) ],
)->create_build_script;