-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuild.PL
86 lines (65 loc) · 2.26 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
#!perl
use utf8;
use 5.010;
use strict;
use warnings;
our $VERSION = '0.04';
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-*' ],
'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__
#-----------------------------------------------------------------------------
=pod
=encoding utf8
=head1 NAME
Build.PL
=head1 AUTHOR
Markus Demml, [email protected]
=head1 LICENSE AND COPYRIGHT
Copyright (c) 2022, Markus Demml
This library is free software; you can redistribute it and/or modify it
under the same terms as the Perl 5 programming language system itself.
The full text of this license can be found in the LICENSE file included
with this module.
=cut