#!/usr/bin/perl -w # $Id: Makefile.PL,v 1.9 2007-06-04 08:21:17 ian Exp $ # # Makefile.PL for Class::Declare # # Copyright (c) 2003 Ian Brayshaw use 5.000; use ExtUtils::MakeMaker; WriteMakefile( 'NAME' => 'Class::Declare', 'VERSION' => '0.08' , # version ahead of module version # list the module prerequisites 'PREREQ_PM' => { Storable => 0 , 'Test::More' => 0 , 'Test::Exception' => 0.15 }, # needed for lives_and() # if we've got Perl > v5.005 then we can add other module keywords ($] >= 5.005 ? ## Add these new keywords supported since 5.005 ( ABSTRACT_FROM => 'Declare.pm' , AUTHOR => 'Ian Brayshaw ' ) : ()) );