X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=b8d6de07b62a2881c8bc2b09b2723af912ee380c;hb=fb0b12262299bdb35146c051aa7a8c073ec6494d;hp=9686e28a89835afd605b6bd0dfc3a0be59f3ad76;hpb=4850170cc2e0c6bd6e9e1381da5be4b6b6b079c2;p=p5sagit%2FModule-Metadata.git diff --git a/Makefile.PL b/Makefile.PL index 9686e28..b8d6de0 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -7,7 +7,30 @@ use ExtUtils::MakeMaker; WriteMakefile( NAME => 'Module::Metadata', VERSION_FROM => 'lib/Module/Metadata.pm', + ABSTRACT_FROM => 'lib/Module/Metadata.pm', + LICENSE => 'perl', PREREQ_PM => { - 'version' => 0.87, + 'Carp' => 0, + 'File::Find' => 0, + 'File::Spec' => 0, + 'IO::File' => 0, + 'strict' => 0, + 'vars' => 0, + 'version' => 0.87, + 'warnings' => 0, + $] < 5.008 + ? ( 'IO::Scalar' => 0 ) + : () + , }, + META_MERGE => { + dynamic_config => 0, + resources => { + # r/w: p5sagit@git.shadowcat.co.uk:Module-Metadata.git + repository => 'git://git.shadowcat.co.uk/p5sagit/Module-Metadata.git', + homepage => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Module-Metadata.git', + }, + }, + + INSTALLDIRS => ($] < 5.011 ? 'perl' : 'site'), );