X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FConfig-Any.git;a=blobdiff_plain;f=Makefile.PL;h=28fac16ee22d28e5c83800b2b90b6c418a2ecd76;hp=bdff64ac11e5c5a95f0964519dbc98b8cbe37939;hb=bb941906c239836c60ecce6d451cd896898f1efd;hpb=f0e3c2214342d0d8a8839009b8b9c7e6bfbc7ab2 diff --git a/Makefile.PL b/Makefile.PL index bdff64a..28fac16 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,12 +1,19 @@ -use inc::Module::Install 0.65; +use inc::Module::Install 0.87; +if ( -e 'MANIFEST.SKIP' ) { + system( 'pod2text lib/Config/Any.pm > README' ); +} + +perl_version '5.006'; name 'Config-Any'; + all_from 'lib/Config/Any.pm'; requires 'Module::Pluggable' => '3.01'; -requires 'version'; -requires 'Test::More'; +test_requires 'Test::More'; auto_install; +resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/trunk/Config-Any/'; + WriteAll;