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=32a885f1bfad14fbdb24819541d983e909001ab6;hb=f7f5632ecb153629ddac65ed74c250407e44e37a;hpb=cc765b4a442d8744325cf7f9d6bef7fd94cd3214 diff --git a/Makefile.PL b/Makefile.PL index 32a885f..991f89b 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,16 +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 => '5.700501', - ABSTRACT => q{The Catalyst Developer's Manual}, - PL_FILES => {}, - PREREQ_PM => { - 'Test::More' => 0, - }, - dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, - clean => { FILES => 'Catalyst-Manual-*' }, -);