The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use 5.6.1;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    NAME              => 'Pod::WSDL',
    VERSION_FROM      => 'lib/Pod/WSDL.pm', # finds $VERSION
    PREREQ_PM         => {
    	'Carp'         => 1.03,
    	'Test::More'   => 0.47,
    	'XML::Writer'  => 0.531,
    	'IO::Scalar'   => 2.110,
    	'XML::XPath'   => 1.13,
    	'Pod::Text'    => 2.21},
    ($] >= 5.006 ?     ## Add these new keywords supported since 5.005
      (ABSTRACT_FROM  => 'lib/Pod/WSDL.pm', # retrieve abstract from module
       AUTHOR         => 'Tarek Ahmed <bloerch -at- oelbsk.org>') : ()),
);