the sitelib change happened before this module was cored, so we don't need to do...
[p5sagit/Module-Metadata.git] / Makefile.PL
CommitLineData
a4891190 1use strict;
2use warnings FATAL => 'all';
3use ExtUtils::MakeMaker;
4
f1d18ad3 5(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
a4891190 6
7WriteMakefile(
8 NAME => 'Module::Metadata',
4850170c 9 VERSION_FROM => 'lib/Module/Metadata.pm',
d903922c 10 ABSTRACT_FROM => 'lib/Module/Metadata.pm',
11 LICENSE => 'perl',
4850170c 12 PREREQ_PM => {
8f9f6d27 13 'Carp' => 0,
14 'File::Find' => 0,
15 'File::Spec' => 0,
16 'IO::File' => 0,
17 'strict' => 0,
18 'vars' => 0,
19 'version' => 0.87,
20 'warnings' => 0,
8d86d0e2 21 $] < 5.008
22 ? ( 'IO::Scalar' => 0 )
23 : ()
24 ,
4850170c 25 },
7e57a40e 26 META_MERGE => {
27 dynamic_config => 0,
28 resources => {
29 # r/w: p5sagit@git.shadowcat.co.uk:Module-Metadata.git
30 repository => 'git://git.shadowcat.co.uk/p5sagit/Module-Metadata.git',
31 homepage => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Module-Metadata.git',
32 },
33 },
a4891190 34);