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=4335ff9727104d93960d99525d37d9549b0b6f68;hb=68559a79662c2d668393318eed2468c3df4ec576;hpb=8f45565456f999c57d82a3588d70677f8cc83e5d diff --git a/Makefile.PL b/Makefile.PL index 4335ff9..e6d337c 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,12 +1,25 @@ -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'; -abstract_from 'lib/Catalyst/Manual.pm'; -version_from 'lib/Catalyst/Manual.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; + +# r/w: catagits@git.shadowcat.co.uk:Catalyst-Manual.git +resources repository => 'git://git.shadowcat.co.uk/catagits/Catalyst-Manual.git'; + WriteAll;