POD fix
[catagits/Catalyst-Plugin-Authentication.git] / Makefile.PL
1 use inc::Module::Install 0.87;
2
3 if( -e 'MANIFEST.SKIP' ) {
4     system( 'pod2text lib/Catalyst/Plugin/Authentication.pm > README' );
5 }
6
7 perl_version '5.008001';
8
9 name 'Catalyst-Plugin-Authentication';
10 all_from 'lib/Catalyst/Plugin/Authentication.pm';
11
12 requires 'Catalyst::Runtime';
13 requires 'Class::Inspector';
14 requires 'MRO::Compat';
15 requires 'Catalyst::Plugin::Session' => '0.10';
16
17 test_requires 'Test::More';
18 test_requires 'Test::Exception';
19 test_requires 'Test::MockObject';
20
21 auto_install;
22 resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/trunk/Catalyst-Plugin-Authentication/';
23
24 WriteAll;