minor tidy to deprecation warning
[p5sagit/Config-Any.git] / Makefile.PL
1 use inc::Module::Install 0.87;
2
3 if ( -e 'MANIFEST.SKIP' ) {
4     system( 'pod2text lib/Config/Any.pm > README' );
5 }
6
7 perl_version '5.006';
8 name 'Config-Any';
9
10 all_from 'lib/Config/Any.pm';
11
12 requires 'Module::Pluggable' => '3.01';
13
14 test_requires 'Test::More';
15
16 auto_install;
17 resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/trunk/Config-Any/';
18
19 WriteAll;