WritingPlugins refers to ExtendingCatalyst now
[catagits/Catalyst-Manual.git] / Makefile.PL
CommitLineData
169144c5 1use strict;
2use warnings;
3use ExtUtils::MakeMaker;
4
5WriteMakefile(
d6a46222 6 NAME => 'Catalyst::Manual',
7 AUTHOR => 'Jonathan Rockway <jrockway@cpan.org>',
8 VERSION_FROM => 'lib/Catalyst/Manual.pm',
9 ABSTRACT_FROM => 'lib/Catalyst/Manual.pm',
10 PL_FILES => {},
11 PREREQ_PM => {
12 'Test::More' => 0,
13 },
14 dist => { COMPRESS => 'gzip -9f',
15 SUFFIX => 'gz', },
16 clean => { FILES => 'Catalyst-Manual-*' },
17 );