r12988@zaphod: kd | 2008-04-29 16:12:24 +1000
[catagits/Catalyst-Plugin-Authentication.git] / Makefile.PL
CommitLineData
9ab964a8 1use inc::Module::Install 0.67;
1af16f71 2
27bf2c72 3if( -e 'MANIFEST.SKIP' ) {
4 system( 'pod2text lib/Catalyst/Plugin/Authentication.pm > README' );
5}
6
1af16f71 7name 'Catalyst-Plugin-Authentication';
8all_from 'lib/Catalyst/Plugin/Authentication.pm';
9
10perl_version '5.8.1';
11
12requires 'Catalyst::Runtime';
13requires 'Class::Inspector';
14requires 'Catalyst::Plugin::Session' => '0.10';
15
ec9c7364 16test_requires 'Test::More';
17
1af16f71 18auto_install;
19WriteAll;