git-cpan-module: SOAP-WSDL git-cpan-version: 2.00_28 git-cpan-authorid: MKUTTER git-cpan-file: authors/id/M/MK/MKUTTER/SOAP-WSDL-2.00_28.tar.gz
54 lines
1.9 KiB
Perl
54 lines
1.9 KiB
Perl
use Module::Build;
|
|
use version;
|
|
$build = Module::Build->new(
|
|
dist_author => 'Martin Kutter <martin.kutter@fen-net.de>',
|
|
create_makefile_pl => 'passthrough',
|
|
dist_abstract => 'SOAP with WSDL support',
|
|
dist_name => 'SOAP-WSDL',
|
|
dist_version => '2.00_28',
|
|
module_name => 'SOAP::WSDL',
|
|
license => 'artistic',
|
|
requires => {
|
|
# 5.6.x is way too buggy and has no unicode support
|
|
# for us. SOAP-WSDL relies on unicode (WS-I demands it)
|
|
# and triggers several 5.6 bugs...
|
|
'perl' => q(5.8.0),
|
|
'Class::Std::Fast' => qv(0.0.5),
|
|
'Data::Dumper' => 0,
|
|
'Date::Parse' => 0,
|
|
'Date::Format' => 0,
|
|
'File::Basename' => 0,
|
|
'File::Path' => 0,
|
|
'Getopt::Long' => 0,
|
|
'List::Util' => 0,
|
|
'LWP::UserAgent' => 0,
|
|
'Template' => 0,
|
|
'Term::ReadKey' => 0,
|
|
'XML::Parser::Expat' => 0,
|
|
},
|
|
buildrequires => {
|
|
'Class::Std::Fast' => qv(0.0.5),
|
|
'Cwd' => 0,
|
|
'Date::Parse' => 0,
|
|
'Date::Format' => 0,
|
|
'Getopt::Long' => 0,
|
|
'List::Util' => 0,
|
|
'LWP::UserAgent' => 0,
|
|
'File::Basename' => 0,
|
|
'File::Path' => 0,
|
|
'File::Spec' => 0,
|
|
'Storable' => 0,
|
|
'Test::More' => 0,
|
|
'Template' => 0,
|
|
'XML::Parser::Expat' => 0,
|
|
},
|
|
recursive_test_files => 1,
|
|
meta_add => {
|
|
no_index => {
|
|
directory => 'lib/SOAP/WSDL/Generator/Template/XSD/',
|
|
},
|
|
}
|
|
);
|
|
$build->add_build_element('tt');
|
|
$build->create_build_script;
|