File: Makefile.PL

package info (click to toggle)
libxml-compile-wsdl11-perl 3.07-1
  • links: PTS, VCS
  • area: non-free
  • in suites: bullseye, buster
  • size: 208 kB
  • sloc: perl: 1,331; makefile: 2
file content (50 lines) | stat: -rw-r--r-- 1,387 bytes parent folder | download
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
40
41
42
43
44
45
46
47
48
49
50
use ExtUtils::MakeMaker;

use 5.008;

my $version = '3.07';

my $prereq =
   { XML::Compile         => 1.48
   , XML::Compile::SOAP11 => 3.23
   , 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 <markov@cpan.org>'
 , ABSTRACT   => 'WSDL version 1.1'
 , LICENSE    => 'perl_5'

 , META_MERGE =>
      { 'meta-spec' => { version => 2 }
      , resources  =>
          { repository =>
            { type => 'git'
            , url  => 'https://github.com/markov2/perl5-XML-Compile-WSDL11.git'
            , web  => 'https://github.com/markov2/perl5-XML-Compile-WSDL11'
            }
          , homepage => 'http://perl.overmeer.net/CPAN/'
          , license  => [ 'http://dev.perl.org/licenses/' ]
          }
      }
 );

### used by oodist during production of distribution
sub MY::postamble { <<'__POSTAMBLE' }

# for DIST
EXTENDS         = ../XML-Compile-Cache:../XML-Compile-SOAP:../XML-Compile-SOAP12:../XML-Compile
RAWDIR          = ../public_html/xml-compile-wsdl11/raw
DISTDIR         = ../public_html/xml-compile-wsdl11/source
SKIP_LINKS      = XML::LibXML

# for POD
FIRST_YEAR      = 2014
EMAIL           = perl@overmeer.net
WEBSITE         = http://perl.overmeer.net/CPAN/
__POSTAMBLE