add dummy var for the Hiding constant to avoid triggering void warnings
[p5sagit/Module-Metadata.git] / Makefile.PL
CommitLineData
a4891190 1use strict;
2use warnings FATAL => 'all';
3use ExtUtils::MakeMaker;
5661e08c 4use 5.006;
a4891190 5
f1d18ad3 6(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
a4891190 7
8WriteMakefile(
9 NAME => 'Module::Metadata',
4850170c 10 VERSION_FROM => 'lib/Module/Metadata.pm',
d903922c 11 ABSTRACT_FROM => 'lib/Module/Metadata.pm',
12 LICENSE => 'perl',
4850170c 13 PREREQ_PM => {
8f9f6d27 14 'Carp' => 0,
15 'File::Find' => 0,
16 'File::Spec' => 0,
17 'IO::File' => 0,
18 'strict' => 0,
eed8b6fa 19 'warnings' => 0,
8f9f6d27 20 'vars' => 0,
21 'version' => 0.87,
22 'warnings' => 0,
8d86d0e2 23 $] < 5.008
24 ? ( 'IO::Scalar' => 0 )
25 : ()
26 ,
4850170c 27 },
7e57a40e 28 META_MERGE => {
5ebfae52 29 'meta-spec' => { version => 2 },
7e57a40e 30 dynamic_config => 0,
31 resources => {
32 # r/w: p5sagit@git.shadowcat.co.uk:Module-Metadata.git
e39df202 33 repository => {
34 url => 'git://git.shadowcat.co.uk/p5sagit/Module-Metadata.git',
35 web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Module-Metadata.git',
36 type => 'git',
37 },
38 bugtracker => {
39 mailto => 'bug-Module-Metadata@rt.cpan.org',
40 web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Module-Metadata',
41 },
7e57a40e 42 },
43 },
a4891190 44);