-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuild.PL
59 lines (50 loc) · 1.88 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
#!perl
use utf8;
use 5.010;
use strict;
use warnings;
use Module::Build;
Module::Build->VERSION( '0.4004' );
my $builder = Module::Build->new(
'module_name' => 'Perl::Critic::Mardem',
'dist_abstract' => 'Some Perl::Critic::Policies to search for needed refactoring',
'license' => 'Perl_5',
'dist_author' => q{Markus Demml <[email protected]>},
'dist_version_from' => 'lib/Perl/Critic/Mardem.pm',
'release_status' => 'stable',
'configure_requires' => { 'Module::Build' => '0.4004', },
'test_requires' => {
'Test::More' => 0,
'English' => 0,
'Test::CheckManifest' => 0,
'Test2::V0' => 0,
'Test2::Tools::Exception' => 0,
'Cwd' => 0,
'Path::This' => 0,
'Test::Pod' => 0,
'Test::Pod::Coverage' => 0,
'Pod::Coverage' => 0,
},
'requires' => {
'perl' => 5.010,
'Exporter' => 0,
'Readonly' => 0,
'List::Util' => 0,
'Perl::Critic' => 0,
'Perl::Critic::Policy' => 0,
'Perl::Critic::Utils' => 0,
'Perl::Critic::Utils::McCabe' => 0,
},
'recommends' => {},
'add_to_cleanup' => [ 'Perl-Critic-Mardem-*', 'MANIFEST*.bak', 'blib/', 'cover_db/' ],
'meta_merge' => {
'resources' => {
'bugtracker' => 'https://github.com/mardem1/perl-critic-mardem/issues',
'homepage' => 'https://github.com/mardem1/perl-critic-mardem',
'repository' => 'git://github.com/mardem1/perl-critic-mardem.git',
},
},
);
$builder->create_build_script();
__END__
#-----------------------------------------------------------------------------