projects
/
dbsrgits/DBIx-Class-Historic.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
More refactoring and tweaking, might_have support added
[dbsrgits/DBIx-Class-Historic.git]
/
Build.PL
1
use strict;
2
use Module::Build;
3
4
my %arguments = (
5
create_makefile_pl => 'passthrough',
6
license => 'perl',
7
module_name => 'DBIx::Class',
8
requires => {
9
'DBI' => 0,
10
'NEXT' => 0,
11
'DBD::SQLite' => 1.08,
12
'Tie::IxHash' => 0,
13
},
14
create_makefile_pl => 'passthrough',
15
create_readme => 1,
16
test_files => [ glob('t/*.t'), glob('t/*/*.t') ]
17
);
18
19
Module::Build->new(%arguments)->create_build_script;
20