X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=8dc1d6e0f221c22304f7eebe1145f12b45bbf84d;hb=ace08c3da3d5186a4014a946fd70cf335e051b70;hp=0b3a8f29ab3c48734707437431d9d1aae9fa5146;hpb=7fe30ae25ad11a858bc1673208a979b1e2af8f25;p=dbsrgits%2FSQL-Translator.git diff --git a/Makefile.PL b/Makefile.PL index 0b3a8f2..8dc1d6e 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,36 +1,7 @@ -package SQL::Translator; +# $Id: Makefile.PL,v 1.35 2004-07-30 15:28:49 kycl4rk Exp $ use strict; -use ExtUtils::MakeMaker; - -WriteMakefile( - 'NAME' => __PACKAGE__, - 'VERSION' => 0.01, - 'EXE_FILES' => [ - 'bin/auto-dia.pl', - 'bin/auto-graph.pl', - 'bin/sql_translator.pl', - ], - 'PREREQ_PM' => { - 'Class::Base' => 0, - 'File::Basename' => 0, - 'File::Spec' => 0, # Version! - 'GD' => 0, - 'GraphViz' => 0, - 'IO::Dir' => 0, - 'IO::File' => 0, - 'IO::Scalar' => 0, - 'Parse::RecDescent' => 1.94, - 'Pod::Usage' => 0, - 'Spreadsheet::ParseExcel' => 0, - 'Test::More' => 0, - 'Text::ParseWords' => 0, - 'Text::RecordParser' => 0.02, - 'XML::Writer' => 0, - }, - clean => { - FILES => '$(DISTNAME)-$(VERSION).tar.gz', - }, -); - +use Module::Build::Compat; +Module::Build::Compat->run_build_pl(args => \@ARGV); +Module::Build::Compat->write_makefile();