1use 5.006;
2use ExtUtils::MakeMaker;
3# See lib/ExtUtils/MakeMaker.pm for details of how to influence
4# the contents of the Makefile that is written.
5WriteMakefile(
6    NAME              => 'Class::DBI::Plugin::AbstractCount',
7    VERSION_FROM      => 'AbstractCount.pm', # finds $VERSION
8    PREREQ_PM         =>
9			{ 'Class::DBI'         => 0.95
10			, 'Class::DBI::Plugin' => 0.02
11			, 'SQL::Abstract'      => 1.50
12			},
13    ($] >= 5.006 ?     ## Add these new keywords supported since 5.005
14      (ABSTRACT_FROM  => 'AbstractCount.pm', # retrieve abstract from module
15       AUTHOR         => 'Jean-Christophe Zeus <mail@ljczeus.com>') : ()),
16);
17