X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FConfig-Any.git;a=blobdiff_plain;f=Makefile.PL;h=ac459ef12f32c9e92de7036cf3b3e00b928ab079;hp=bdff64ac11e5c5a95f0964519dbc98b8cbe37939;hb=e23825ecd2eaaeba8d95b59317a5b78f3c4924bf;hpb=ea01144d5f17c8aa6391605034769f8bd49def91 diff --git a/Makefile.PL b/Makefile.PL index bdff64a..ac459ef 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;