-
Notifications
You must be signed in to change notification settings - Fork 9
/
Makefile.PL
41 lines (40 loc) · 1.43 KB
/
Makefile.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
use 5.010;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Test::MockFile',
AUTHOR => q{Todd Rinaldo <[email protected]>},
VERSION_FROM => 'lib/Test/MockFile.pm',
ABSTRACT_FROM => 'lib/Test/MockFile.pm',
LICENSE => 'artistic_2',
PL_FILES => {},
MIN_PERL_VERSION => '5.006',
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => '0',
},
BUILD_REQUIRES => {
'Test::More' => '1.302133',
'Test2::Bundle::Extended' => '0.000084', # Oldest version provided on CPAN isa_ok changed in 0.000035 and we need that.
'Test2::Tools::Explain' => '0',
'Test2::Plugin::NoWarnings' => '0',
'File::Slurper' => 0,
'File::Temp' => 0,
'File::Basename' => 0,
'Test2::Harness::Util::IPC' => 0,
'Test::MockModule' => 0,
},
PREREQ_PM => {
'Overload::FileCheck' => '0.013',
'Text::Glob' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Test-MockFile-*' },
META_MERGE => {
resources => {
license => 'http://dev.perl.org/licenses/',
bugtracker => 'https://github.com/cpanelinc/Test-MockFile/issues',
repository => 'https://github.com/cpanelinc/Test-MockFile',
}
},
);