From 1994b36d8be40becbd8839fbeda4b21cd5288ea5 Mon Sep 17 00:00:00 2001 From: Scott Walters Date: Wed, 27 Aug 2014 17:53:50 -0400 Subject: [PATCH] switch from Module::Build to Make::Maker based Makefile.PL after Module::Build vomited on trying to 'make dist', and then when that was fixed, generated a completely busted dist without error. good riddance. --- Makefile.PL | 38 +++++++++++++++++++++++++++++++------- 1 file changed, 31 insertions(+), 7 deletions(-) diff --git a/Makefile.PL b/Makefile.PL index 5db0001..f0acfdd 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,7 +1,31 @@ -# Note: this file was auto-generated by Module::Build::Compat version 0.2808_01 -require 5.8.0; - use Module::Build::Compat 0.02; - - Module::Build::Compat->run_build_pl(args => \@ARGV); - require Module::Build; - Module::Build::Compat->write_makefile(build_class => 'Module::Build'); +use 5.010000; +use ExtUtils::MakeMaker; + +WriteMakefile( + NAME => 'SOAP::WSDL', + VERSION_FROM => 'lib/SOAP/WSDL.pm', + PREREQ_PM => { + 'Class::Std::Fast' => q(0.000005), + 'Cwd' => 0, + 'Data::Dumper' => 0, + 'Date::Format' => 0, + 'Date::Parse' => 0, + 'File::Basename' => 0, + 'File::Path' => 0, + 'File::Spec' => 0, + 'Getopt::Long' => 0, + 'LWP::UserAgent' => 0, + 'List::Util' => 0, + 'Module::Build' => 0, + 'Storable' => 0, + 'Template' => q(2.18), + 'Term::ReadKey' => 0, + 'Test::More' => 0, + 'URI' => 0, + 'XML::Parser::Expat' => 0, + 'perl' => q(5.008), + }, + ABSTRACT_FROM => 'lib/SOAP/WSDL.pm', + AUTHOR => 'Scott Walters ', +); +