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=a0ba6409048571ffba6fdd7bc4a3d3bdadb2582b;hb=3f60663db5785414c07f209ed82b090762f0a9b7;hpb=d6a462221b516b62f0ffdd528fff404b05efa57d diff --git a/Makefile.PL b/Makefile.PL index a0ba640..e6d337c 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,17 +1,25 @@ use strict; use warnings; -use ExtUtils::MakeMaker; +use inc::Module::Install 0.87; -WriteMakefile( - NAME => 'Catalyst::Manual', - AUTHOR => 'Jonathan Rockway ', - VERSION_FROM => 'lib/Catalyst/Manual.pm', - ABSTRACT_FROM => 'lib/Catalyst/Manual.pm', - PL_FILES => {}, - PREREQ_PM => { - 'Test::More' => 0, - }, - dist => { COMPRESS => 'gzip -9f', - SUFFIX => 'gz', }, - clean => { FILES => 'Catalyst-Manual-*' }, - ); +use Module::Install::AuthorTests; +use Module::Install::AuthorRequires; + +name 'Catalyst-Manual'; +all_from 'lib/Catalyst/Manual.pm'; +author 'Kieren Diment '; +license 'perl'; + +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;