Commit | Line | Data |
cfaf3de0 |
1 | package SQL::Translator; |
2 | |
3 | use strict; |
4 | use ExtUtils::MakeMaker; |
5 | |
6 | WriteMakefile( |
7 | 'NAME' => __PACKAGE__, |
cc3742ae |
8 | 'VERSION' => 0.01, |
cfaf3de0 |
9 | 'EXE_FILES' => [ |
cc3742ae |
10 | 'bin/auto-dia.pl', |
b5f8a3c8 |
11 | 'bin/auto-graph.pl', |
cfaf3de0 |
12 | 'bin/sql_translator.pl', |
13 | ], |
14 | 'PREREQ_PM' => { |
000597e5 |
15 | 'Class::Base' => 0, |
16 | 'File::Basename' => 0, |
9590dfe3 |
17 | 'File::Spec' => 0, # Version! |
000597e5 |
18 | 'GD' => 0, |
2e50a8e0 |
19 | 'GraphViz' => 0, |
000597e5 |
20 | 'IO::Dir' => 0, |
9590dfe3 |
21 | 'IO::File' => 0, |
22 | 'IO::Scalar' => 0, |
b5f8a3c8 |
23 | 'Parse::RecDescent' => 1.94, |
000597e5 |
24 | 'Pod::Usage' => 0, |
25 | 'Spreadsheet::ParseExcel' => 0, |
9590dfe3 |
26 | 'Test::More' => 0, |
000597e5 |
27 | 'Text::ParseWords' => 0, |
7fe30ae2 |
28 | 'Text::RecordParser' => 0.02, |
9590dfe3 |
29 | 'XML::Writer' => 0, |
cfaf3de0 |
30 | }, |
7a8e1f51 |
31 | clean => { |
1740a336 |
32 | FILES => '$(DISTNAME)-$(VERSION).tar.gz', |
7a8e1f51 |
33 | }, |
cfaf3de0 |
34 | ); |
9398955f |
35 | |
36 | |