forked from Perl-Toolchain-Gang/Module-Metadata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
66 lines (62 loc) · 1.63 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
use strict;
use warnings FATAL => 'all';
use ExtUtils::MakeMaker;
use 5.006;
# TODO: convert to dzil and use [OnlyCorePrereqs], and possibly [DualLife]
(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
WriteMakefile(
NAME => 'Module::Metadata',
VERSION_FROM => 'lib/Module/Metadata.pm',
ABSTRACT_FROM => 'lib/Module/Metadata.pm',
LICENSE => 'perl',
MIN_PERL_VERSION => '5.006',
PREREQ_PM => {
'Carp' => 0,
'File::Find' => 0,
'File::Spec' => 0,
'strict' => 0,
'warnings' => 0,
'vars' => 0,
'version' => 0.87,
'warnings' => 0,
$] < 5.008
? ( 'IO::Scalar' => 0 )
: ()
,
},
realclean => { FILES => [ 'Distar/', 'MANIFEST*' ] },
-f 'META.yml' ? () : (
META_MERGE => {
'meta-spec' => { version => 2 },
dynamic_config => 1,
resources => {
repository => {
url => '[email protected]:Perl-Toolchain-Gang/Module-Metadata.git',
web => 'https://github.com/Perl-Toolchain-Gang/Module-Metadata',
type => 'git',
},
bugtracker => {
mailto => '[email protected]',
web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Module-Metadata',
},
},
prereqs => {
test => {
requires => {
'Test::More' => 0,
'Carp' => 0,
'Config' => 0,
'Cwd' => 0,
'Data::Dumper' => 0,
'Exporter' => 0,
'File::Basename' => 0,
'File::Find' => 0,
'File::Path' => 0,
'File::Spec' => 0,
'File::Temp' => 0,
'IO::File' => 0,
},
},
},
} ),
);