X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=8dc1d6e0f221c22304f7eebe1145f12b45bbf84d;hb=e4a9818dd51f752673818986e0419f25ad9f9357;hp=ad64d8bf69632b1b81a3bc8275cd35b6cca55774;hpb=9c6b150f13b1927717db26f333e9e3b229239f5f;p=dbsrgits%2FSQL-Translator.git diff --git a/Makefile.PL b/Makefile.PL index ad64d8b..8dc1d6e 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,34 +1,7 @@ -package SQL::Translator; +# $Id: Makefile.PL,v 1.35 2004-07-30 15:28:49 kycl4rk Exp $ use strict; -use ExtUtils::MakeMaker; +use Module::Build::Compat; -WriteMakefile( - 'NAME' => __PACKAGE__, - 'VERSION_FROM' => 'lib/SQL/Translator.pm', - 'EXE_FILES' => [ - 'bin/sqlt-diagram.pl', - 'bin/sqlt-graph.pl', - 'bin/sql_translator.pl', - ], - 'PREREQ_PM' => { - 'Class::Base' => 0, - 'File::Basename' => 0, - 'File::Spec' => 0, - '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', - }, -); +Module::Build::Compat->run_build_pl(args => \@ARGV); +Module::Build::Compat->write_makefile();