Added the requirement of Parse::RecDescent 1.94 or later, added
[dbsrgits/SQL-Translator.git] / Makefile.PL
1 package SQL::Translator;
2
3 use strict;
4 use ExtUtils::MakeMaker;
5
6 WriteMakefile(
7     'NAME'         => __PACKAGE__,
8     'VERSION'      => 0.01,
9     'EXE_FILES'    => [
10         'bin/auto-dia.pl',
11         'bin/auto-graph.pl',
12         'bin/sql_translator.pl',
13     ],
14     'PREREQ_PM'    => {
15         'Class::Base'             => 0,
16         'File::Basename'          => 0,
17         'File::Spec'              => 0,
18         'GD'                      => 0,
19         'GraphViz'                => 0,
20         'IO::Dir'                 => 0,
21         'Parse::RecDescent'       => 1.94,
22         'Pod::Usage'              => 0,
23         'Spreadsheet::ParseExcel' => 0,
24         'Text::ParseWords'        => 0,
25         'XML::Dumper'             => 0,
26     },
27     clean => {
28         FILES => '$(DISTNAME)-$(VERSION).tar.gz',
29     },
30 );
31
32