X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=26c5c9bb96c035a45b09a7ef0f072545eab57491;hb=5efa8a5bc558aacf2d8711e2549687b6fa514b4a;hp=23d629c642e495b0fdb975e3ccf8635129c18b81;hpb=e646b627c5ed2f607ac09254b7dcd56038d893d7;p=gitmo%2FClass-C3-XS.git diff --git a/Makefile.PL b/Makefile.PL index 23d629c..26c5c9b 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,7 +1,15 @@ -use inc::Module::Install; +use inc::Module::Install 0.65; name 'Class-C3-XS'; all_from 'lib/Class/C3/XS.pm'; -build_requires 'Test::More' => '0.47'; +requires 'perl' => 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;