Commit | Line | Data |
5d283305 |
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 => { |
bc09ebfa |
9 | 'Data::Page' => 2.00, |
7fa9bab8 |
10 | 'Scalar::Util' => 0, |
f156b7a3 |
11 | 'SQL::Abstract' => 1.20, |
12 | 'SQL::Abstract::Limit' => 0.101, |
069dea02 |
13 | 'Class::C3' => 0.11, |
75a23b3e |
14 | 'Storable' => 0, |
3c0068c1 |
15 | 'Class::Data::Accessor' => 0.01, |
ef940582 |
16 | 'Carp::Clan' => 0, |
fc69fea6 |
17 | 'DBI' => 1.40, |
5d283305 |
18 | }, |
049b0c85 |
19 | build_requires => { |
3049601e |
20 | 'DBD::SQLite' => 1.11, |
049b0c85 |
21 | }, |
c1124f19 |
22 | recommends => { |
7da9cd47 |
23 | 'Data::UUID' => 0, |
91b0fbd7 |
24 | 'Module::Find' => 0, |
cc6504dc |
25 | 'Class::Inspector' => 0, |
7da9cd47 |
26 | }, |
5d283305 |
27 | create_makefile_pl => 'passthrough', |
28 | create_readme => 1, |
29 | test_files => [ glob('t/*.t'), glob('t/*/*.t') ] |
30 | ); |
31 | |
32 | Module::Build->new(%arguments)->create_build_script; |
33 | |