-
Notifications
You must be signed in to change notification settings - Fork 3
/
Build.PL
94 lines (70 loc) · 2.36 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
use 5.010001;
use strict;
use warnings;
use Module::Build;
my $class = Module::Build->subclass( code => <<'END_SUBCLASS' );
sub ACTION_test {
my ($self) = @_;
$self->depends_on('manifest');
return $self->SUPER::ACTION_test();
}
sub ACTION_authortest {
my ($self) = @_;
$self->depends_on('build');
$self->depends_on('manifest');
$self->depends_on('distmeta');
$self->test_files( qw< t xt/author > );
$self->recursive_test_files(1);
$self->depends_on('test');
return;
}
sub ACTION_distdir {
my ($self) = @_;
$self->depends_on('authortest');
return $self->SUPER::ACTION_distdir();
}
END_SUBCLASS
my $builder = $class->new(
module_name => 'Perl::Critic::StricterSubs',
dist_author => 'Jeffrey Thalhammer <thaljef@cpan.org>',
dist_abstract => 'Perl::Critic plugin for stricter subroutine checking',
license => 'perl',
create_readme => 1,
create_packlist => 1,
sign => 0,
requires => {
'Perl::Critic::Policy' => 1.082,
'Perl::Critic::Utils' => 1.082,
'PPI::Document' => 0,
'File::PathList' => 0,
'List::MoreUtils' => 0,
'English' => 0,
'Exporter' => 0,
'Carp' => 0,
'base' => 0,
'strict' => 0,
'warnings' => 0,
'perl' => 5.006001,
},
build_requires => {
'Module::Build' => 0.40,
},
test_requires => {
'Test::More' => 0,
'Test::Warnings' => 0,
'Perl::Critic::TestUtils' => 1.082,
},
configure_requires => {
'Module::Build' => 0.40,
},
add_to_cleanup => [ qw(MANIFEST MANIFEST.bak README META*) ],
meta_merge => {
resources => {
homepage => 'http://perlcritic.com',
license => [ 'http://dev.perl.org/licenses' ],
repository => 'git://github.com/Perl-Critic/Perl-Critic-StricterSubs.git',
bugtracker => 'https://github.com/Perl-Critic/Perl-Critic-StricterSubs/issues',
}
},
);
$builder->create_build_script();