adding graphviz dep
[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' => {
000597e5 14 'Class::Base' => 0,
15 'File::Basename' => 0,
16 'File::Spec' => 0,
17 'GD' => 0,
2e50a8e0 18 'GraphViz' => 0,
000597e5 19 'IO::Dir' => 0,
20 'Parse::RecDescent' => 0, # Is a particular version needed?
21 'Pod::Usage' => 0,
22 'Spreadsheet::ParseExcel' => 0,
23 'Text::ParseWords' => 0,
24 'XML::Dumper' => 0,
cfaf3de0 25 },
7a8e1f51 26 clean => {
1740a336 27 FILES => '$(DISTNAME)-$(VERSION).tar.gz',
7a8e1f51 28 },
cfaf3de0 29);
9398955f 30
31