DBIx-DBO

 view release on metacpan or  search on metacpan

Build.PL  view on Meta::CPAN

use strict;
use warnings;
use Module::Build;

my %build = (
    module_name         => 'DBIx::DBO',
    license             => 'perl',
    dist_author         => 'Vernon Lyon <vlyon@cpan.org>',
    dist_version_from   => 'lib/DBIx/DBO.pm',
    dynamic_config      => 1,
    configure_requires => {
        'Module::Build' => '0.30',
    },
    build_requires => {
        'Module::Build' => '0.30',
        'Test::More' => 0.88,
        'File::Temp' => 0,
    },
    requires => {
        'perl' => 5.014,
        'DBI' => '1.55',
    },
    recommends => {
        'DBD::MariaDB' => '1.22',
        'DBD::mysql' => 4.004,
        'DBD::Pg' => 2,
        'DBD::SQLite' => 1.31,
        'DBD::Oracle' => 1.13,
        'Storable' => 2.38,
    },
    meta_merge => {
        resources => {
            bugtracker => 'https://github.com/vlyon/DBIx-DBO/issues',
            repository => 'git://github.com/vlyon/DBIx-DBO.git',
        },
    },
);

unless (exists &Scalar::Util::weaken) {
    # The pure-perl Scalar::Util doesn't contain weaken(), Task::Weaken will try to fix it or give an error
    $build{requires}{'Task::Weaken'} = 0;
}

Module::Build->subclass(code => q(
    sub ACTION_testcover {
        $ENV{DEVEL_COVER_OPTIONS} = '-ignore,^Test/,-coverage,all,pod-also_private-STORABLE_'
            unless exists $ENV{DEVEL_COVER_OPTIONS};
        print "DEVEL_COVER_OPTIONS = $ENV{DEVEL_COVER_OPTIONS}\n";
        shift->SUPER::ACTION_testcover;
    }
    sub ACTION_test {
        local $_[0]->{properties}{verbose} = 1 if $ENV{AUTOMATED_TESTING};
        $_[0]->SUPER::ACTION_test;
    }
))->new(%build)->create_build_script();



( run in 0.734 second using v1.01-cache-2.11-cpan-995e09ba956 )