X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=8dc1d6e0f221c22304f7eebe1145f12b45bbf84d;hb=b178940934ec79968ed16511ec2644f3736c92f2;hp=915ba8e8be96c9f7f38be1378b438a155617c008;hpb=f1c3ce1e7eb4709738d3c05e690ca6d211b979bc;p=dbsrgits%2FSQL-Translator.git diff --git a/Makefile.PL b/Makefile.PL index 915ba8e..8dc1d6e 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,60 +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; -my @SIGN; -if ($ExtUtils::MakeMaker::VERSION >= 6.18) { - @SIGN = (SIGN => 1); -} - -WriteMakefile( - 'NAME' => __PACKAGE__, - @SIGN, - 'VERSION_FROM' => 'lib/SQL/Translator.pm', - 'EXE_FILES' => [ - 'bin/sqlt-diagram', - 'bin/sqlt-diff', - 'bin/sqlt-dumper', - 'bin/sqlt-graph', - 'bin/sqlt', - ], - '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.2602, - 'Template' => 2.10, - 'Test::More' => 0, - 'Test::Exception' => 0, - 'Test::Differences' => 0, - 'Text::ParseWords' => 0, - 'Text::RecordParser' => 0.02, - 'XML::Writer' => 0.500, - 'XML::XPath' => 1.13, - 'YAML' => 0, - }, - 'clean' => { - FILES => '$(DISTVNAME).tar$(SUFFIX)', - }, -); - -ackage MY; -use File::Basename qw(basename); - -sub libscan { - my ($self, $file) = @_; - my $bfile = basename($file); - - return if $bfile =~ /^\.(?:cvs)?ignore$/; - return if $bfile =~ /\.swp$/; - - return $self->SUPER::libscan($file); -} +Module::Build::Compat->run_build_pl(args => \@ARGV); +Module::Build::Compat->write_makefile();