X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=08eebde028ffcfff82f72c11f09d5f0fdd973731;hb=4b5c50b9a631255bd484f1d943f6262f3e218367;hp=35e7dbe2d5200e7eb9df1e7dba51f8a180931810;hpb=0eb5d8f43b9c03ceb50173a69e84577d00cba133;p=dbsrgits%2FSQL-Translator.git diff --git a/Makefile.PL b/Makefile.PL index 35e7dbe..08eebde 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,55 +1,31 @@ -package SQL::Translator; - -use strict; -use ExtUtils::MakeMaker; - -WriteMakefile( - 'NAME' => __PACKAGE__, - 'SIGN' => 1, - '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, - 'XML::XPath' => 1.13, - 'YAML' => 0, - }, - 'clean' => { - FILES => '$(DISTVNAME).tar$(SUFFIX)', - }, -); - -package 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); -} +# Note: this file was auto-generated by Module::Build::Compat version 0.31012 + + unless (eval "use Module::Build::Compat 0.02; 1" ) { + print "This module requires Module::Build to install itself.\n"; + + require ExtUtils::MakeMaker; + my $yn = ExtUtils::MakeMaker::prompt + (' Install Module::Build now from CPAN?', 'y'); + + unless ($yn =~ /^y/i) { + die " *** Cannot install without Module::Build. Exiting ...\n"; + } + + require Cwd; + require File::Spec; + require CPAN; + + # Save this 'cause CPAN will chdir all over the place. + my $cwd = Cwd::cwd(); + + CPAN::Shell->install('Module::Build::Compat'); + CPAN::Shell->expand("Module", "Module::Build::Compat")->uptodate + or die "Couldn't install Module::Build, giving up.\n"; + + chdir $cwd or die "Cannot chdir() back to $cwd: $!"; + } + eval "use Module::Build::Compat 0.02; 1" or die $@; + + Module::Build::Compat->run_build_pl(args => \@ARGV); + require Module::Build; + Module::Build::Compat->write_makefile(build_class => 'Module::Build');