X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=blobdiff_plain;f=Makefile.PL;h=e56c0f598d32ffc6355f5899f6ee245f86773080;hp=32a885f1bfad14fbdb24819541d983e909001ab6;hb=58a04c57b2c2575bc0361c3bdd3bc3c200e183cb;hpb=cc765b4a442d8744325cf7f9d6bef7fd94cd3214 diff --git a/Makefile.PL b/Makefile.PL index 32a885f..e56c0f5 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,16 +1,11 @@ -use strict; -use warnings; -use ExtUtils::MakeMaker; +use inc::Module::Install 0.65; -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-*' }, -); +name 'Catalyst-Manual'; +all_from 'lib/Catalyst/ManualPlaceholder.pm'; +author 'Jonathan Rockway '; +license 'perl'; + +requires 'Test::More'; + +auto_install; +WriteAll;