|
Revision 260, 0.7 kB
(checked in by bradfitz, 3 years ago)
|
|
remove silly dependencies.
ben gave me permission. :)
|
| Line | |
|---|
| 1 | # $Id$ |
|---|
| 2 | |
|---|
| 3 | use inc::Module::Install; |
|---|
| 4 | |
|---|
| 5 | name('Data-ObjectDriver'); |
|---|
| 6 | abstract(''); |
|---|
| 7 | author('Six Apart <cpan@sixapart.com>'); |
|---|
| 8 | version_from('lib/Data/ObjectDriver.pm'); |
|---|
| 9 | license('perl'); |
|---|
| 10 | no_index(directory => 't'); |
|---|
| 11 | sign(1); |
|---|
| 12 | |
|---|
| 13 | include('ExtUtils::AutoInstall'); |
|---|
| 14 | |
|---|
| 15 | requires('DBI'); |
|---|
| 16 | requires('Class::Accessor::Fast'); |
|---|
| 17 | requires('Class::Data::Inheritable'); |
|---|
| 18 | requires('Class::Trigger'); |
|---|
| 19 | requires('List::Util'); |
|---|
| 20 | recommends('Text::SimpleTable'); |
|---|
| 21 | build_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 | |
|---|
| 28 | auto_include(); |
|---|
| 29 | auto_install(); |
|---|
| 30 | |
|---|
| 31 | &WriteAll; |
|---|