skip pod coverage as a fatal build test
[BroadWorks-OCI.git] / Makefile.PL
1 use 5.006;
2 use strict;
3 use warnings FATAL => 'all';
4 use ExtUtils::MakeMaker;
5 use File::ShareDir::Install;
6
7 install_share dist => 'share';
8
9 WriteMakefile(
10     NAME             => 'BroadWorks::OCI',
11     AUTHOR           => q{Mark Wells <mark@freeside.biz>},
12     VERSION_FROM     => 'lib/BroadWorks/OCI.pm',
13     ABSTRACT_FROM    => 'lib/BroadWorks/OCI.pm',
14     LICENSE          => 'Artistic_2_0',
15     PL_FILES         => {},
16     MIN_PERL_VERSION => 5.006,
17     CONFIGURE_REQUIRES => {
18         'ExtUtils::MakeMaker' => 0,
19     },
20     BUILD_REQUIRES => {
21         'Test::More' => 0,
22         'File::ShareDir::Install' => 0,
23     },
24     PREREQ_PM => {
25       'XML::Compile'            => 1.02,
26       'XML::Compile::Cache'     => 1.02,
27       'Log::Report'             => 1.0,
28       'Moose'                   => 2.0,
29       'IO::Socket::Timeout'     => 0.27,
30       'MooseX::ClassAttribute'  => 0.27,
31     },
32     dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
33     clean => { FILES => 'BroadWorks-OCI-*' },
34 );
35
36 package MY;
37 use File::ShareDir::Install qw(postamble);
38