fail more obviously if ReadmeFromPod is not available
[catagits/Catalyst-Controller-WrapCGI.git] / Makefile.PL
CommitLineData
e889d526 1use inc::Module::Install 0.91;
32b32c62 2
b764ef2c 3use Module::Install::ReadmeFromPod ();
bef5bffc 4
32b32c62 5name 'Catalyst-Controller-WrapCGI';
6all_from 'lib/Catalyst/Controller/WrapCGI.pm';
7author 'Matt S. Trout <mst@shadowcat.co.uk>';
8
e889d526 9requires 'Catalyst' => '5.80015';
1a48e935 10requires 'HTTP::Request::AsCGI' => '1.2';
d9280b8f 11requires 'CGI::Compile' => '0.07';
d5ba2ab2 12requires 'File::pushd';
457c1d76 13requires 'File::Find::Rule';
c264816e 14requires 'List::MoreUtils';
83bba9ab 15requires 'URI' => '1.37';
16requires 'parent';
17requires 'namespace::clean';
18requires 'Task::Weaken';
19requires 'LWP';
20requires 'Moose';
1ce18a56 21
bef5bffc 22test_requires 'Test::More' => '0.92';
23test_requires 'Catalyst::Plugin::Static::Simple';
24test_requires 'CGI';
25
26readme_from 'lib/Catalyst/Controller/CGIBin.pm';
27
28realclean_files qw/README MANIFEST/;
32b32c62 29
b9548267 30auto_provides;
32b32c62 31auto_install;
bef5bffc 32resources repository => 'git://git.shadowcat.co.uk/catagits/Catalyst-Controller-WrapCGI.git';
32b32c62 33WriteAll;