-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
39 lines (38 loc) · 1.06 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
use 5.006;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Mock::Sub',
AUTHOR => q{Steve Bertrand <[email protected]>},
VERSION_FROM => 'lib/Mock/Sub.pm',
ABSTRACT_FROM => 'lib/Mock/Sub.pm',
LICENSE => 'perl_5',
PL_FILES => {},
MIN_PERL_VERSION => 5.006,
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
bugtracker => {
web => 'https://github.com/stevieb9/mock-sub/issues',
},
repository => {
type => 'git',
url => 'https://github.com/stevieb9/mock-sub.git',
web => 'https://github.com/stevieb9/mock-sub',
},
},
},
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
},
BUILD_REQUIRES => {
'Test::More' => 0,
},
PREREQ_PM => {
'Carp' => 0,
'Scalar::Util' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Mock-Sub-*' },
);