Typos fix and perltidy.
[blog.pm-common-perl-mods.git] / Form-Processor-Model-RDBO / Makefile.PL
blobc10e90a0addf497a12ce0206cfe80f2d61369d5c
1 use strict;
2 use warnings;
3 use ExtUtils::MakeMaker;
5 WriteMakefile(
6     NAME                => 'Form::Processor::Model::RDBO',
7     AUTHOR              => 'Viacheslav Tikhanovskii <viacheslav.t@gmail.com>',
8     VERSION_FROM        => 'lib/Form/Processor/Model/RDBO.pm',
9     ABSTRACT_FROM       => 'lib/Form/Processor/Model/RDBO.pm',
10     ($ExtUtils::MakeMaker::VERSION >= 6.3002
11       ? ('LICENSE'=> 'perl')
12       : ()),
13     PL_FILES            => {},
14     PREREQ_PM => {
15         'Form::Processor' => 0,
16         'Rose::DB::Object' => 0.774,
17         'Test::More' => 0,
18     },
19     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
20     clean               => { FILES => 'Form-Processor-Model-RDBO-*' },