root/trunk/Makefile.PL

Revision 260, 0.7 kB (checked in by bradfitz, 3 years ago)

remove silly dependencies.

ben gave me permission. :)

Line 
1# $Id$
2
3use inc::Module::Install;
4
5name('Data-ObjectDriver');
6abstract('');
7author('Six Apart <cpan@sixapart.com>');
8version_from('lib/Data/ObjectDriver.pm');
9license('perl');
10no_index(directory => 't');
11sign(1);
12
13include('ExtUtils::AutoInstall');
14
15requires('DBI');
16requires('Class::Accessor::Fast');
17requires('Class::Data::Inheritable');
18requires('Class::Trigger');
19requires('List::Util');
20recommends('Text::SimpleTable');
21build_requires('Test::Exception');
22
23# Cache::Memory isn't in Debian, and the tests all SKIP if this isn't here anyway,
24# so it's more of a build_recommends than a build_requires, but that doesn't exist,
25# so....  commented out:
26# build_recommends('Cache::Memory');
27
28auto_include();
29auto_install();
30
31&WriteAll;
Note: See TracBrowser for help on using the browser.