X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=blobdiff_plain;f=Makefile.PL;h=c64d99bffd975ad6555e2920d904ee5d3874226a;hp=80fb5110ea0bf4710208eff33b307e05a3971169;hb=ab0bd0bb5e2a7d8d3e355ca3524a61c3d4c59fd6;hpb=ffb3eec68931b0b74e039c53f14c9957c94ae8b1 diff --git a/Makefile.PL b/Makefile.PL index 80fb511..c64d99b 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,13 +1,24 @@ +use strict; +use warnings; use inc::Module::Install 0.87; +use Module::Install::AuthorTests; +use Module::Install::AuthorRequires; + name 'Catalyst-Manual'; all_from 'lib/Catalyst/Manual.pm'; author 'Kieren Diment '; license 'perl'; -requires 'Test::More'; +test_requires 'Test::More'; + +author_requires 'Pod::Simple' => '3.11'; # L support +author_requires 'Test::Pod' => '1.14'; +author_requires 'Test::Pod::Coverage' => '1.04'; +author_tests 't/author'; auto_install; -resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Manual/5.70/trunk/'; +resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Manual/5.80/trunk/'; WriteAll; +