Version 0.02
[blog.pm-common-perl-mods.git] / MojoX-Dispatcher-FilterChain / Makefile.PL
blob69e1d7f7c9d9021148ee9af8df8c993d0c84e2e2
1 use strict;
2 use warnings;
3 use ExtUtils::MakeMaker;
5 WriteMakefile(
6     NAME                => 'MojoX::Dispatcher::FilterChain',
7     AUTHOR              => 'Viacheslav Tikhanovskii <vti@cpan.org>',
8     VERSION_FROM        => 'lib/MojoX/Dispatcher/FilterChain.pm',
9     ABSTRACT_FROM       => 'lib/MojoX/Dispatcher/FilterChain.pm',
10     ($ExtUtils::MakeMaker::VERSION >= 6.3002
11       ? ('LICENSE'=> 'perl')
12       : ()),
13     PL_FILES            => {},
14     PREREQ_PM => {
15         'Mojo'       => 0,
16         'Test::More' => 0,
17     },
18     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
19     clean               => { FILES => 'MojoX-Dispatcher-FilterChain-*' },