Fixed YAML testi. Failed due to sqlfairy version increase and YAML not putting
[dbsrgits/SQL-Translator.git] / Build.PL
CommitLineData
6f146640 1# $Id: Build.PL,v 1.4 2005-05-18 15:47:24 grommit 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,
24 'IO::Dir' => 0,
25 'Log::Log4perl' => 0,
26 'Template' => 2.10,
27 'Parse::RecDescent' => 1.94,
28 'Pod::Usage' => 0,
5e14531f 29 },
30 recommends => {
31 'GD' => 0,
32 'GraphViz' => 0,
33 'IO::File' => 0,
34 'IO::Scalar' => 0,
35 'Spreadsheet::ParseExcel' => 0.2602,
36 'Text::ParseWords' => 0,
37 'Text::RecordParser' => 0.02,
38 'XML::Writer' => 0.500,
39 'XML::XPath' => 1.13,
6f146640 40 'YAML' => 0.39,
5e14531f 41 },
42 build_requires => {
43 'File::Basename' => 0,
44 'File::Spec' => 0,
45 'Test::More' => 0,
46 'Test::Exception' => 0,
47 'Test::Differences' => 0,
48 }
49);
50$builder->create_build_script;
51print "Now run './Build', './Build test', and './Build install'\n";