X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FConfig-Any.git;a=blobdiff_plain;f=Makefile.PL;h=88d7dd329c3e7cc8f02689bcc30f2b38156b5b1d;hp=bdff64ac11e5c5a95f0964519dbc98b8cbe37939;hb=92a04e78451078b33f75e7c44d247b024c27b4f7;hpb=f0e3c2214342d0d8a8839009b8b9c7e6bfbc7ab2 diff --git a/Makefile.PL b/Makefile.PL index bdff64a..88d7dd3 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,4 +1,8 @@ -use inc::Module::Install 0.65; +use inc::Module::Install 0.68; + +if ( -e 'MANIFEST.SKIP' ) { + system( 'pod2text lib/Config/Any.pm > README' ); +} name 'Config-Any'; all_from 'lib/Config/Any.pm'; @@ -6,7 +10,7 @@ all_from 'lib/Config/Any.pm'; requires 'Module::Pluggable' => '3.01'; requires 'version'; -requires 'Test::More'; +test_requires 'Test::More'; auto_install; WriteAll;