use 5.003; use ExtUtils::MakeMaker; # $Id: Makefile.PL 4063 2008-09-13 16:49:41Z cfaerber $ # See lib/ExtUtils/MakeMaker.pm for details of how to influence # the contents of the Makefile that is written. WriteMakefile( 'NAME' => 'DateTime::Format::DBI', 'VERSION_FROM' => 'lib/DateTime/Format/DBI.pm', # finds $VERSION 'PREREQ_PM' => { 'DateTime' => 0.10, 'DBI' => 1.21, }, ($] >= 5.005 ? ## Add these new keywords supported since 5.005 (ABSTRACT_FROM => 'lib/DateTime/Format/DBI.pm', # retrieve abstract from module AUTHOR => 'Claus Faerber ', LICENSE => 'perl' ) : ()), );