X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=e4005c5ae8be91f095534ed31479430bd89f818f;hb=79d953e0f15fde45453aea45e089346c89444c52;hp=5227b9bcf2479f6416647a0f266eed9b84deca69;hpb=eacc208a1204b9a9187686de93e8613410c94269;p=p5sagit%2FPackage-Variant.git diff --git a/Makefile.PL b/Makefile.PL index 5227b9b..e4005c5 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -2,11 +2,39 @@ use strict; use warnings FATAL => 'all'; 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', + 'perl' => 5.006, + }, + + META_MERGE => { + 'meta-spec' => { version => 2 }, + dynamic_config => 0, + + resources => { + # r/w: p5sagit@git.shadowcat.co.uk:Package-Variant.git + repository => { + url => 'git://git.shadowcat.co.uk/p5sagit/Package-Variant.git', + web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Package-Variant.git', + type => 'git', + }, + bugtracker => { + mailto => 'bug-Package-Variant@rt.cpan.org', + web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Package-Variant', + }, + }, + no_index => { package => [ 'string' ] }, }, );