-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile.PL
More file actions
52 lines (51 loc) · 1.88 KB
/
Makefile.PL
File metadata and controls
52 lines (51 loc) · 1.88 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
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Tree::MultiNode',
AUTHOR => 'Kyle R. Burton <krburton@cpan.org>',
VERSION_FROM => 'lib/Tree/MultiNode.pm',
ABSTRACT_FROM => 'lib/Tree/MultiNode.pm',
PL_FILES => {},
MIN_PERL_VERSION => '5.008',
($ExtUtils::MakeMaker::VERSION >= 6.3002 ? ('LICENSE' => 'perl', ) : ()),
PREREQ_PM => {
'Scalar::Util' => 0,
($ExtUtils::MakeMaker::VERSION < 6.64 ? ('Test::More' => 0) : ()),
},
($ExtUtils::MakeMaker::VERSION >= 6.64 ? (
TEST_REQUIRES => {
'Test::More' => 0,
},
) : ()),
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Tree-MultiNode-*' },
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
license => ['http://dev.perl.org/licenses/'],
bugtracker => {
web => 'https://github.com/cpan-authors/Tree-MultiNode/issues',
},
repository => {
type => 'git',
url => 'https://github.com/cpan-authors/Tree-MultiNode.git',
web => 'https://github.com/cpan-authors/Tree-MultiNode',
},
},
provides => {
'Tree::MultiNode' => {
file => 'lib/Tree/MultiNode.pm',
version => MM->parse_version('lib/Tree/MultiNode.pm'),
},
'Tree::MultiNode::Node' => {
file => 'lib/Tree/MultiNode/Node.pm',
version => MM->parse_version('lib/Tree/MultiNode/Node.pm'),
},
'Tree::MultiNode::Handle' => {
file => 'lib/Tree/MultiNode/Handle.pm',
version => MM->parse_version('lib/Tree/MultiNode/Handle.pm'),
},
},
},
);