use 5.003; use ExtUtils::MakeMaker; # $Id: Makefile.PL,v 1.2 2003/11/02 23:17:38 cfaerber Exp $ # 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 Färber ') : ()), );