X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=blobdiff_plain;f=Makefile.PL;h=9073049accc9093e7e459185cd70bf395250cf80;hp=991f89b1e65561c0838abc59ccc094e40896ec67;hb=a7a910e009276b83fe9072e208da90e2612b24d2;hpb=3efd2fac6130a737d6d1466683a4f4aada6b07ef diff --git a/Makefile.PL b/Makefile.PL index 991f89b..9073049 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -2,9 +2,8 @@ use strict; use warnings; use inc::Module::Install 0.87; -if ($Module::Install::AUTHOR) { - require Module::Install::AuthorRequires; -} +use Module::Install::AuthorTests; +use Module::Install::AuthorRequires; name 'Catalyst-Manual'; all_from 'lib/Catalyst/Manual.pm'; @@ -13,11 +12,13 @@ license 'perl'; test_requires 'Test::More'; -author_requires 'Test::Pod'; -author_requires 'Test::Pod::Coverage'; +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.80/trunk/'; +resources repository => 'git://git.shadowcat.co.uk/catagits/Catalyst-Runtime.git'; WriteAll;