X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=blobdiff_plain;f=Makefile.PL;h=c3a90a7750ea564cef9367e35db31a391b6f05c0;hp=485d9d38f8d1289ac5caea10a2abb79551d39ef0;hb=2b6c29a280000cc118379f26a7ce9fe2ff00583f;hpb=169144c5a80729f40b9dcdf1a700149617a08045 diff --git a/Makefile.PL b/Makefile.PL index 485d9d3..c3a90a7 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,16 +1,11 @@ -use strict; -use warnings; -use ExtUtils::MakeMaker; +use inc::Module::Install 0.64; -WriteMakefile( - NAME => 'Catalyst::Manual', - AUTHOR => 'Jonathan Rockway ', - VERSION => '5.700301', - 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/Manual.pm'; +author 'Kieren Diment '; +license 'perl'; + +requires 'Test::More'; + +auto_install; +WriteAll;