X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=08eebde028ffcfff82f72c11f09d5f0fdd973731;hb=4b5c50b9a631255bd484f1d943f6262f3e218367;hp=629e9c73923819ca50d89393a0309072091bc4e8;hpb=e0fac635ffee4380510c0652430fac20b7c69c30;p=dbsrgits%2FSQL-Translator.git diff --git a/Makefile.PL b/Makefile.PL index 629e9c7..08eebde 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,17 +1,31 @@ -package SQL::Translator; - -use strict; -use ExtUtils::MakeMaker; - -WriteMakefile( - 'NAME' => __PACKAGE__, - 'VERSION_FROM' => "lib/SQL/Translator.pm", - 'EXE_FILES' => [ - 'bin/sql_translator.pl', - ], - 'PREREQ_PM' => { - 'Parse::RecDescent' => 0, # Is a particular version needed? - 'XML::Dumper' => 0, - 'Pod::Usage' => 0, - }, -); +# 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');