git-cpan-module: SOAP-WSDL git-cpan-version: 1.27 git-cpan-authorid: MKUTTER git-cpan-file: authors/id/M/MK/MKUTTER/SOAP-WSDL-1.27.tar.gz
26 lines
571 B
Perl
26 lines
571 B
Perl
#!/usr/bin/perl -w
|
|
use Module::Build;
|
|
|
|
Module::Build->new(
|
|
create_makefile_pl => 'passthrough',
|
|
dist_name => 'SOAP-WSDL',
|
|
dist_version => '1.27',
|
|
dist_abstract => 'WSDL support for SOAP::Lite',
|
|
module_name => 'SOAP::WSDL',
|
|
license => 'artistic',
|
|
requires => {
|
|
'SOAP::Lite' => 0,
|
|
'XML::XPath' => 0,
|
|
},
|
|
buildrequires => {
|
|
'Test::More' => 0,
|
|
'SOAP::Lite' => 0,
|
|
'XML::XPath' => 0,
|
|
'Time::HiRes' => 0,
|
|
'File::Spec' => 0,
|
|
'File::Basename' => 0,
|
|
'Cwd' => 0,
|
|
},
|
|
|
|
)->create_build_script;
|