Generate MANIFEST from MANIFEST.SKIP.
[catagits/Catalyst-Authentication-Realm-Adaptor.git] / Makefile.PL
CommitLineData
c6a2d572 1use inc::Module::Install 0.91;
2
934d6838 3perl_version '5.8.1';
4
c6a2d572 5name 'Catalyst-Authentication-Realm-Adaptor';
6all_from 'lib/Catalyst/Authentication/Realm/Adaptor.pm';
7
c6a2d572 8
9if( -e 'MANIFEST.SKIP' ) {
10 system( 'pod2text lib/Catalyst/Authentication/Realm/Adaptor.pm > README');
11}
12
13requires (
14 'Catalyst::Runtime' => 0,
15 'Catalyst::Plugin::Authentication' => 0.10003,
16 'Moose' => 0,
17 );
18
19test_requires ('Test::More' => 0.42);
ec9b091e 20
21WriteAll;