X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=0b79b06a334e4cba9b5aab6375034363431e3d37;hb=cc15434fcb28de3640e235b300d89971320929cc;hp=d64aaa715d7e290aef9bde57f76f2ed592e23b24;hpb=5f5db57fc502ce8c23c2f4515bb59d187145c697;p=gitmo%2FRole-Tiny.git diff --git a/Makefile.PL b/Makefile.PL index d64aaa7..0b79b06 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,6 +1,6 @@ use strict; use warnings FATAL => 'all'; -use 5.008001; +use 5.006; use ExtUtils::MakeMaker; (do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml'; @@ -13,9 +13,10 @@ my %BUILD_DEPS = ( my $mymeta_works = do { no warnings; $ExtUtils::MakeMaker::VERSION >= 6.5707 }; WriteMakefile( - NAME => 'Role-Tiny', + NAME => 'Role::Tiny', VERSION_FROM => 'lib/Role/Tiny.pm', PREREQ_PM => { + Exporter => '5.57', ($] >= 5.010 ? () : ('MRO::Compat' => 0)), ($mymeta_works ? () : (%BUILD_DEPS)), }, @@ -24,8 +25,13 @@ WriteMakefile( META_ADD => { resources => { # r/w: gitmo@git.shadowcat.co.uk:Role-Tiny.git - repository => 'git://git.shadowcat.co.uk/Role-Tiny.git', + repository => 'git://git.shadowcat.co.uk/gitmo/Role-Tiny.git', }, }, + META_MERGE => { + no_index => { + directory => [ 'xt' ] + } + }, );