o Added bin/auto-dia.pl to scripts list
[dbsrgits/SQL-Translator.git] / Makefile.PL
CommitLineData
cfaf3de0 1package SQL::Translator;
2
3use strict;
4use ExtUtils::MakeMaker;
5
6WriteMakefile(
7 'NAME' => __PACKAGE__,
cc3742ae 8 'VERSION' => 0.01,
cfaf3de0 9 'EXE_FILES' => [
cc3742ae 10 'bin/auto-dia.pl',
cfaf3de0 11 'bin/sql_translator.pl',
12 ],
13 'PREREQ_PM' => {
44fb27ae 14 'Class::Base' => 0,
15 'File::Basename' => 0,
16 'File::Spec' => 0,
cc3742ae 17 'GD' => 0,
44fb27ae 18 'IO::Dir' => 0,
cfaf3de0 19 'Parse::RecDescent' => 0, # Is a particular version needed?
5adf7025 20 'Pod::Usage' => 0,
44fb27ae 21 'Text::ParseWords' => 0,
22 'XML::Dumper' => 0,
cfaf3de0 23 },
7a8e1f51 24 clean => {
1740a336 25 FILES => '$(DISTNAME)-$(VERSION).tar.gz',
7a8e1f51 26 },
cfaf3de0 27);
9398955f 28
29