1use 5.6.1;
2use ExtUtils::MakeMaker;
3# See lib/ExtUtils/MakeMaker.pm for details of how to influence
4# the contents of the Makefile that is written.
5WriteMakefile(
6    NAME              => 'Pod::WSDL',
7    VERSION_FROM      => 'lib/Pod/WSDL.pm', # finds $VERSION
8    PREREQ_PM         => {
9    	'Carp'         => 1.03,
10    	'Test::More'   => 0.47,
11    	'XML::Writer'  => 0.531,
12    	'IO::Scalar'   => 2.110,
13    	'XML::XPath'   => 1.13,
14    	'Pod::Text'    => 2.21},
15    ($] >= 5.006 ?     ## Add these new keywords supported since 5.005
16      (ABSTRACT_FROM  => 'lib/Pod/WSDL.pm', # retrieve abstract from module
17       AUTHOR         => 'Tarek Ahmed <bloerch -at- oelbsk.org>') : ()),
18);
19