Fix typo.
[catagits/Catalyst-Manual.git] / Makefile.PL
1 use strict;
2 use warnings;
3 use inc::Module::Install 0.87;
4
5 use Module::Install::AuthorTests;
6 use Module::Install::AuthorRequires;
7
8 name 'Catalyst-Manual';
9 all_from 'lib/Catalyst/Manual.pm';
10 author 'Kieren Diment <zarquon@cpan.org>';
11 license 'perl';
12
13 test_requires 'Test::More';
14
15 author_requires 'Pod::Simple' => '3.11'; # L<Foo|http://foo.com> support
16 author_requires 'Test::Pod' => '1.14';
17 author_requires 'Test::Pod::Coverage' => '1.04';
18 author_tests 't/author';
19
20 auto_install;
21 resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Manual/5.80/trunk/';
22
23 WriteAll;
24