-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
61 lines (57 loc) · 1.64 KB
/
Makefile.PL
File metadata and controls
61 lines (57 loc) · 1.64 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Git::Lint',
AUTHOR => 'Blaine Motsinger <blaine@renderorange.com>',
ABSTRACT_FROM => 'lib/Git/Lint.pm',
VERSION_FROM => 'lib/Git/Lint.pm',
LICENSE => 'mit',
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
bugtracker => {
web => 'https://github.com/renderorange/Git-Lint/issues',
},
homepage => 'https://github.com/renderorange/Git-Lint',
repository => {
type => 'git',
url => 'https://github.com/renderorange/Git-Lint.git',
web => 'https://github.com/renderorange/Git-Lint',
},
},
},
MIN_PERL_VERSION => '5.10.1',
BUILD_REQUIRES => {
'ExtUtils::MakeMaker' => '6.64', # for TEST_REQUIRES
},
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => '6.64',
},
TEST_REQUIRES => {
'File::Find' => 0,
'File::Spec' => 0,
'Test::More' => '0.98',
'Test::Deep' => 0,
'Test::Exception' => '0.42', # recommended by Test2
'Test::Warnings' => 0,
},
PREREQ_PM => {
'Capture::Tiny' => 0,
'constant' => 0,
'FindBin' => 0,
'Getopt::Long' => '2.45', # at least 2.45 for bugfixes
'lib' => 0,
'List::MoreUtils' => 0,
'Module::Loader' => 0,
'parent' => 0,
'Pod::Usage' => '1.67', # at least 1.67 for bugfixes
'strict' => 0,
'Try::Tiny' => 0,
'warnings' => 0,
},
EXE_FILES => [
'bin/git-lint',
],
test => {
TESTS => 't/*/*/*.t',
},
);