X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=fb3b0306d56d790c4463b0f7c77cc29913439b1b;hb=cbb1ce9aa2f3960c349cb2eaac97608db8da07dd;hp=5878ada5153379d45762accdcf050ac0dba165c9;hpb=0f01303cd92ae9bb1dd74265ab69918825842b84;p=gitmo%2FMRO-Compat.git diff --git a/Makefile.PL b/Makefile.PL index 5878ada..fb3b030 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,14 +1,21 @@ -use inc::Module::Install; +use inc::Module::Install 0.65; name 'MRO-Compat'; all_from 'lib/MRO/Compat.pm'; -build_requires 'Test::More' => '0.47'; +test_requires 'Test::More' => '0.47'; if($] < 5.009_005) { - feature 'XS Speedups', 'Class::C3::XS' => '0.04'; - requires 'Class::C3' => '0.18'; + feature 'XS Speedups', + 'Class::C3::XS' => '0.07'; + requires 'Class::C3' => '0.19'; } +# Rebuild README for maintainers +if(-e 'MANIFEST.SKIP') { + system("pod2text lib/MRO/Compat.pm >README"); +} + +auto_provides; auto_install; WriteAll;