use ExtUtils::MakeMaker; # See lib/ExtUtils/MakeMaker.pm for details of how to influence # the contents of the Makefile that is written. WriteMakefile ( ($] ge '5.005') ? ( 'AUTHOR' => 'Ron Savage (ron@savage.net.au)', 'ABSTRACT' => 'Read a database table into a hash', ) : (), clean => { FILES => 'blib/* Makefile MANIFEST DBIx-Table2Hash-*' }, dist => { COMPRESS => 'gzip', SUFFIX => 'gz' }, DISTNAME => 'DBIx-Table2Hash', NAME => 'DBIx::Table2Hash', PL_FILES => {}, PREREQ_PM => { Carp => 0, Test::More => 0, Test::Pod => 0, }, VERSION_FROM => 'lib/DBIx/Table2Hash.pm', );