X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=ed06169b163f3441a89f41264decd08dd2ab35a6;hb=9b6aa5593150add2bc227bf4d01f495b00c1d8bd;hp=d8d25145a8a4940c38df99cb545609ad8ee8d190;hpb=6980ac23c9dabcc73f12ced7001c8ac5222bad5c;p=p5sagit%2FPackage-Variant.git diff --git a/Makefile.PL b/Makefile.PL index d8d2514..ed06169 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -5,10 +5,26 @@ use ExtUtils::MakeMaker; (do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml'; WriteMakefile( - NAME => 'Package-Variant', + NAME => 'Package::Variant', VERSION_FROM => 'lib/Package/Variant.pm', + CONFIGURE_REQUIRES => { + 'ExtUtils::MakeMaker' => '6.55_01', # for BUILD_REQUIRES + }, + BUILD_REQUIRES => { 'Test::Fatal' => 0 }, PREREQ_PM => { strictures => 1, Carp => 0, + 'Import::Into' => 1, + 'Module::Runtime' => '0.013', + }, + + META_MERGE => { + dynamic_config => 0, + + resources => { + # r/w: p5sagit@git.shadowcat.co.uk:Package-Variant.git + repository => 'git://git.shadowcat.co.uk/p5sagit/Package-Variant.git', + homepage => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Package-Variant.git', + }, }, );