dependencies
[dbsrgits/DBIx-Class-RowCountStatistics.git] / Makefile.PL
1 use strict;
2 use warnings FATAL => 'all';
3 use ExtUtils::MakeMaker;
4
5 (do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
6
7 my $eumm_version  = eval $ExtUtils::MakeMaker::VERSION;
8
9 my %_test_req = (
10     'Test::More' => 0,
11 );
12 my %_build_req = (
13     ($eumm_version < 6.63_03) ? (%_test_req) : (),
14 );
15 my %_req = (
16     ($eumm_version < 6.55_01) ? (%_build_req) : (),
17     'DBIx::Class' => 0,
18 );
19
20 WriteMakefile(
21   NAME => 'CtrlO::DBIC::Cursor::RowCountStatistics',
22   VERSION_FROM => 'lib/CtrlO/DBIC/Cursor/RowCountStatistics.pm',
23   LICENSE => undef,
24   TEST_REQUIRES => \%_test_req,
25   BUILD_REQUIRES => \%_build_req,
26   PREREQ_PM => \%_req,
27 );