1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
use ExtUtils::MakeMaker;
use 5.008;
my $version = '3.06';
my $prereq =
{ XML::Compile => 1.48
, XML::Compile::SOAP11 => 3.16
, XML::Compile::Cache => 1.03
, Log::Report => 1.05
, Test::More => 0.54
};
WriteMakefile
( NAME => 'XML::Compile::WSDL11'
, VERSION => $version
, PREREQ_PM => $prereq
, AUTHOR => 'Mark Overmeer'
, ABSTRACT => 'WSDL version 1.1'
, LICENSE => 'perl'
);
### used by oodist during production of distribution
sub MY::postamble { <<'__POSTAMBLE' }
# for DIST
EXTENDS = ../XMLCache:../XMLSOAP:../XMLCompile
RAWDIR = ../public_html/xml-compile-wsdl11/raw
DISTDIR = ../public_html/xml-compile-wsdl11/source
LICENSE = artistic
SKIP_LINKS = XML::LibXML
# for POD
FIRST_YEAR = 2014
EMAIL = perl@overmeer.net
WEBSITE = http://perl.overmeer.net/xml-compile/
PODTAIL = ../XML-shared-podtail
__POSTAMBLE
|