Update FormFu AdvancedCRUD section to use pre-build debian packages and include a...
[catagits/Catalyst-Manual.git] / Makefile.PL
1 use strict;
2 use warnings;
3 use inc::Module::Install 0.87;
4
5 if ($Module::Install::AUTHOR) {
6     require Module::Install::AuthorRequires;
7 }
8
9 name 'Catalyst-Manual';
10 all_from 'lib/Catalyst/Manual.pm';
11 author 'Kieren Diment <zarquon@cpan.org>';
12 license 'perl';
13
14 test_requires 'Test::More';
15
16 author_requires 'Test::Pod';
17 author_requires 'Test::Pod::Coverage';
18
19 auto_install;
20 resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Manual/5.80/trunk/';
21
22 WriteAll;
23