X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=blobdiff_plain;f=Makefile.PL;h=991f89b1e65561c0838abc59ccc094e40896ec67;hp=a0ba6409048571ffba6fdd7bc4a3d3bdadb2582b;hb=a467a71409ca619746c5174d46a0366c957e2ac7;hpb=d6a462221b516b62f0ffdd528fff404b05efa57d diff --git a/Makefile.PL b/Makefile.PL index a0ba640..991f89b 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,17 +1,23 @@ use strict; use warnings; -use ExtUtils::MakeMaker; +use inc::Module::Install 0.87; + +if ($Module::Install::AUTHOR) { + require Module::Install::AuthorRequires; +} + +name 'Catalyst-Manual'; +all_from 'lib/Catalyst/Manual.pm'; +author 'Kieren Diment '; +license 'perl'; + +test_requires 'Test::More'; + +author_requires 'Test::Pod'; +author_requires 'Test::Pod::Coverage'; + +auto_install; +resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Manual/5.80/trunk/'; + +WriteAll; -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-*' }, - );