forked from NachosDevs/Devel--LeakGuard--Object
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
50 lines (45 loc) · 1.48 KB
/
Makefile.PL
File metadata and controls
50 lines (45 loc) · 1.48 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
use strict;
use warnings;
use ExtUtils::MakeMaker '6.64';
WriteMakefile(
NAME => 'Devel::LeakGuard::Object',
ABSTRACT => 'Scoped checks for object leaks',
VERSION_FROM => 'lib/Devel/LeakGuard/Object.pm',
AUTHOR => 'Andy Armstrong <andy@hexten.net>',
LICENSE => 'perl',
MIN_PERL_VERSION => 5.008,
PREREQ_PM => {
'Carp' => 0,
'Data::Dumper' => 0,
'Devel::Peek' => 0,
'List::Util' => '1.19',
'Scalar::Util' => '1.19',
},
BUILD_REQUIRES => {
'Test::More' => '0.42',
'Test::Differences' => 0,
'Test::Trap' => 0,
},
TEST_REQUIRES => {
'latest' => 0,
'Class::Load' => 0,
'File::Find' => 0,
'Test::Kwalitee' => 0,
},
META_MERGE => {
resources => {
repository => 'https://github.com/AndyA/Devel--LeakGuard--Object.git',
bugtracker => 'https://github.com/AndyA/Devel--LeakGuard--Object/issues',
},
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Devel-LeakGuard-Object-*' },
test => { TESTS => join( ' ', (glob( 't/*.t'), glob('xt/author/*.t'))) },
);
sub MY::postamble {
return <<'MAKE_FRAG';
critic:
perlcritic -1 -q lib/ t/*.t xt/author/*.t
MAKE_FRAG
}
# vim: expandtab shiftwidth=4