very minor punctuation fixes
[catagits/Catalyst-Authentication-Store-DBIx-Class.git] / Makefile.PL
CommitLineData
06728522 1use inc::Module::Install 0.67;
2aa8bdb6 2
76e7a763 3if( -e 'MANIFEST.SKIP' ) {
6727afe2 4 system( 'pod2text lib/Catalyst/Authentication/Store/DBIx/Class.pm > README' );
76e7a763 5}
6
f26005a7 7## I'd love to use can_use - but I can't seem to test for success. :-/
8eval { require Catalyst::Plugin::Authentication::Store::DBIx::Class or die 'footy'; };
9
10if (!$@) { #} can_use("Catalyst::Plugin::Authentication::Store::DBIx::Class") ) {
11 print STDERR <<EOM;
12*******************************************
13*** WARNING: DEPRECATED MODULE FOUND ***
14*******************************************
15
16You have the Catalyst::Plugin::Authentication::Store::DBIx::Class installed.
17The module you are installing supercedes it and it's presence has been known
18to cause conflicts. We STRONGLY recommend you remove the old module before
19proceeding.
20
21You have 5 seconds to abort this install to remove the old module.
22EOM
23 sleep 5;
24 print STDERR "Ok. Proceeding anyway...\n\nYou are entering a dimension not only of sight and sound, but of mind...\n\n";
25}
26
27
6727afe2 28name 'Catalyst-Authentication-Store-DBIx-Class';
29all_from 'lib/Catalyst/Authentication/Store/DBIx/Class.pm';
2aa8bdb6 30
76e7a763 31perl_version '5.8.1';
32
f26005a7 33requires ( 'Catalyst::Runtime' => 0,
34 'Catalyst::Plugin::Authentication' => '0.10005',
35 'DBIx::Class' => 0,
36 );
37
76e7a763 38
39test_requires 'Test::More';
2aa8bdb6 40
41auto_install;
42WriteAll;
5000f545 43