Fixed missing schema table comments
[dbsrgits/SQL-Translator.git] / Build.PL
CommitLineData
bb3cd441 1# $Id: Build.PL,v 1.8 2005-06-28 21:43:49 duality72 Exp $
5e14531f 2
3use strict;
4use Module::Build;
5
6my $builder = Module::Build->new(
7 create_readme => 0,
8 dist_abstract => 'SQL DDL transformations and more',
9 dist_author => 'Ken Y. Clark <kclark@cpan.org>',
10 dist_version_from => 'lib/SQL/Translator.pm',
11 license => 'gpl',
12 module_name => 'SQL::Translator',
13 sign => 1,
14 script_files => [
15 'bin/sqlt-diagram',
16 'bin/sqlt-diff',
17 'bin/sqlt-dumper',
18 'bin/sqlt-graph',
19 'bin/sqlt',
20 ],
21 requires => {
9371be50 22 'Class::Base' => 0,
23 'Class::Data::Inheritable' => 0.02,
c88b5f28 24 'Class::MakeMethods' => 0,
9371be50 25 'IO::Dir' => 0,
26 'Log::Log4perl' => 0,
27 'Template' => 2.10,
28 'Parse::RecDescent' => 1.94,
29 'Pod::Usage' => 0,
5e14531f 30 },
31 recommends => {
32 'GD' => 0,
33 'GraphViz' => 0,
34 'IO::File' => 0,
35 'IO::Scalar' => 0,
36 'Spreadsheet::ParseExcel' => 0.2602,
37 'Text::ParseWords' => 0,
38 'Text::RecordParser' => 0.02,
39 'XML::Writer' => 0.500,
40 'XML::XPath' => 1.13,
6f146640 41 'YAML' => 0.39,
5e14531f 42 },
43 build_requires => {
44 'File::Basename' => 0,
45 'File::Spec' => 0,
7f2b8f37 46 'Test::More' => 0.6,
5e14531f 47 'Test::Exception' => 0,
48 'Test::Differences' => 0,
49 }
50);
51$builder->create_build_script;
52print "Now run './Build', './Build test', and './Build install'\n";