forked from sixapart/data-objectdriver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
32 lines (24 loc) · 740 Bytes
/
Makefile.PL
File metadata and controls
32 lines (24 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# $Id$
use inc::Module::Install;
name('Data-ObjectDriver');
abstract('');
author('Six Apart <cpan@sixapart.com>');
all_from('lib/Data/ObjectDriver.pm');
license('perl');
no_index(directory => 't');
include('ExtUtils::AutoInstall');
requires('DBI');
requires('Class::Accessor::Fast');
requires('Class::Data::Inheritable');
requires('Class::Trigger');
requires('List::Util');
recommends('Text::SimpleTable');
build_requires('Test::Exception');
githubmeta;
# Cache::Memory isn't in Debian, and the tests all SKIP if this isn't here anyway,
# so it's more of a build_recommends than a build_requires, but that doesn't exist,
# so.... commented out:
# build_recommends('Cache::Memory');
auto_include_deps;
author_tests('xt');
WriteAll;