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=51e2fb72915fe3ff20a105d7804943ffb52b6da1;hb=75b13da6ee4941fabce2cfea7693ec105782a4fa;hpb=3778bcbe622622881133e21002eea4179453c2f0 diff --git a/Makefile.PL b/Makefile.PL index 51e2fb7..c64d99b 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,11 +1,24 @@ -use inc::Module::Install 0.64; +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 'Jonathan Rockway '; +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.80/trunk/'; + WriteAll; +