Codebase list libexception-class-dbi-perl / v0.01 Makefile.PL
v0.01

Tree @v0.01 (Download .tar.gz)

Makefile.PL @v0.01raw · history · blame

#!/usr/bin/perl -w

# $Id: Makefile.PL,v 1.6 2002/08/23 19:54:56 david Exp $

use strict;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    'NAME'		=> 'Exception::Class::DBI',
    'VERSION_FROM'	=> 'lib/Exception/Class/DBI.pm', # finds $VERSION
    'PREREQ_PM'		=> { 'Exception::Class' => 1.02,
                             'DBI' => 1.28,
                             'Test::Simple' => 0.40, # Need Test::More
                           }, # e.g., Module::Name => 1.1
    ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
      (ABSTRACT_FROM => 'lib/Exception/Class/DBI.pm', # retrieve abstract from module
       AUTHOR     => 'David Wheeler <david@wheeler.net>') : ()),
);