Seems to make more sense that way.
[catagits/Catalyst-Manual.git] / Makefile.PL
index 32a885f..c64d99b 100644 (file)
@@ -1,16 +1,24 @@
 use strict;
 use warnings;
-use ExtUtils::MakeMaker;
+use inc::Module::Install 0.87;
+
+use Module::Install::AuthorTests;
+use Module::Install::AuthorRequires;
+
+name 'Catalyst-Manual';
+all_from 'lib/Catalyst/Manual.pm';
+author 'Kieren Diment <zarquon@cpan.org>';
+license 'perl';
+
+test_requires 'Test::More';
+
+author_requires 'Pod::Simple' => '3.11'; # L<Foo|http://foo.com> support
+author_requires 'Test::Pod' => '1.14';
+author_requires 'Test::Pod::Coverage' => '1.04';
+author_tests 't/author';
+
+auto_install;
+resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Manual/5.80/trunk/';
+
+WriteAll;
 
-WriteMakefile(
-    NAME                => 'Catalyst::Manual',
-    AUTHOR              => 'Jonathan Rockway <jrockway@cpan.org>',
-    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-*' },
-);