tidy up changes file a bit
[catagits/Catalyst-Manual.git] / Makefile.PL
index a0ba640..c3a90a7 100644 (file)
@@ -1,17 +1,11 @@
-use strict;
-use warnings;
-use ExtUtils::MakeMaker;
+use inc::Module::Install 0.64;
 
-WriteMakefile(
-             NAME                => 'Catalyst::Manual',
-             AUTHOR              => 'Jonathan Rockway <jrockway@cpan.org>',
-             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-*' },
-            );
+name 'Catalyst-Manual';
+all_from 'lib/Catalyst/Manual.pm';
+author 'Kieren Diment <zarquon@cpan.org>';
+license 'perl';
+
+requires 'Test::More';
+
+auto_install;
+WriteAll;