X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=fa31642040caa845d9521a170f3a4a3e45256e60;hb=ddb0ab257320d0348fcf5e6bde2ded302a46ca09;hp=cc499d001b49bbd09dfa2645e809af48142e5ca7;hpb=2b72eb536c08a8853a23381e6c393f64f8ea8b61;p=catagits%2FCatalyst-Plugin-ConfigLoader.git diff --git a/Makefile.PL b/Makefile.PL index cc499d0..fa31642 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,13 +1,21 @@ -use inc::Module::Install 0.65; +use inc::Module::Install 0.91; + +if ( -e 'MANIFEST.SKIP' ) { + system( 'pod2text lib/Catalyst/Plugin/ConfigLoader.pm > README' ); +} + +perl_version '5.008'; name 'Catalyst-Plugin-ConfigLoader'; all_from 'lib/Catalyst/Plugin/ConfigLoader.pm'; -requires 'Catalyst'; -requires 'Data::Visitor' => '0.02'; -requires 'Config::Any' => '0.04'; +requires 'Catalyst::Runtime' => '5.7008'; # needed for env_value() +requires 'Data::Visitor' => '0.24'; +requires 'Config::Any' => '0.08'; +requires 'MRO::Compat' => '0.09'; + +test_requires 'Test::More'; -requires 'Test::More'; +resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/trunk/Catalyst-Plugin-ConfigLoader/'; -auto_install; WriteAll;