X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=76cc7aadaf0611a904234b1cd1ce9efb989b3b44;hb=fa86df5d730aee066e7952963c099f398ff04cfc;hp=3a82a4e20345dfa192ab20b86e840fd160043abd;hpb=1a48e9358fcf4ca948f323f9dc7a3ec5899ed335;p=catagits%2FCatalyst-Controller-WrapCGI.git diff --git a/Makefile.PL b/Makefile.PL index 3a82a4e..76cc7aa 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,5 +1,7 @@ use inc::Module::Install 0.91; +use Module::Install::ReadmeFromPod (); + name 'Catalyst-Controller-WrapCGI'; all_from 'lib/Catalyst/Controller/WrapCGI.pm'; author 'Matt S. Trout '; @@ -17,12 +19,17 @@ requires 'Task::Weaken'; requires 'LWP'; requires 'Moose'; +requires 'Class::Unload' if $^O eq 'MSWin32'; + +test_requires 'Test::More' => '0.92'; test_requires 'Catalyst::Plugin::Static::Simple'; test_requires 'CGI'; -build_requires 'Test::More' => '0.92'; +readme_from 'lib/Catalyst/Controller/CGIBin.pm'; + +realclean_files qw/README MANIFEST/; auto_provides; auto_install; -resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/trunk/Catalyst-Controller-WrapCGI/'; +resources repository => 'git://git.shadowcat.co.uk/catagits/Catalyst-Controller-WrapCGI.git'; WriteAll;