X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=108befd70aff7ff6b8458ab11b443ff829e27909;hb=9145417f0d822bfb13f853bf26b22e03807350f2;hp=23d629c642e495b0fdb975e3ccf8635129c18b81;hpb=e646b627c5ed2f607ac09254b7dcd56038d893d7;p=gitmo%2FClass-C3-XS.git diff --git a/Makefile.PL b/Makefile.PL index 23d629c..108befd 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,7 +1,15 @@ -use inc::Module::Install; +use inc::Module::Install 0.75; name 'Class-C3-XS'; all_from 'lib/Class/C3/XS.pm'; -build_requires 'Test::More' => '0.47'; +perl_version 5.006_000; +test_requires 'Test::More' => '0.47'; + +# Rebuild README for maintainers +if(-e 'MANIFEST.SKIP') { + system("pod2text lib/Class/C3/XS.pm >README"); +} + +auto_provides; auto_install; WriteAll;