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=e56c0f598d32ffc6355f5899f6ee245f86773080;hb=3ea31f0aa609f747ca9b2fb1144b39edfd423703;hpb=58a04c57b2c2575bc0361c3bdd3bc3c200e183cb diff --git a/Makefile.PL b/Makefile.PL index e56c0f5..9073049 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,11 +1,24 @@ -use inc::Module::Install 0.65; +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/ManualPlaceholder.pm'; -author 'Jonathan Rockway '; +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 => 'git://git.shadowcat.co.uk/catagits/Catalyst-Runtime.git'; + WriteAll; +