X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=blobdiff_plain;f=Makefile.PL;h=e6d337c8c153855e5b5bb7d69da85ddcfb439fa6;hp=80fb5110ea0bf4710208eff33b307e05a3971169;hb=5c54246469897ee27cfe64e5d1bbd0b541197379;hpb=ffb3eec68931b0b74e039c53f14c9957c94ae8b1 diff --git a/Makefile.PL b/Makefile.PL index 80fb511..e6d337c 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,13 +1,25 @@ +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/'; + +# r/w: catagits@git.shadowcat.co.uk:Catalyst-Manual.git +resources repository => 'git://git.shadowcat.co.uk/catagits/Catalyst-Manual.git'; WriteAll;