o Added bin/auto-dia.pl to scripts list
[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/sql_translator.pl',
12     ],
13     'PREREQ_PM'    => {
14         'Class::Base'        => 0,
15         'File::Basename'     => 0,
16         'File::Spec'         => 0,
17         'GD'                 => 0,
18         'IO::Dir'            => 0,
19         'Parse::RecDescent'  => 0,  # Is a particular version needed?
20         'Pod::Usage'         => 0,
21         'Text::ParseWords'   => 0,
22         'XML::Dumper'        => 0,
23     },
24     clean => {
25         FILES => '$(DISTNAME)-$(VERSION).tar.gz',
26     },
27 );
28
29