first commit
|
1 |
use strict; |
2 |
use warnings; |
|
3 |
use Module::Build; |
|
4 | ||
5 |
my $builder = Module::Build->new( |
|
6 |
module_name => 'DBI::Custom', |
|
7 |
license => 'perl', |
|
8 |
dist_author => 'Yuki Kimoto <kimoto.yuki@gmail.com>', |
|
9 |
dist_version_from => 'lib/DBI/Custom.pm', |
|
10 |
build_requires => { |
|
11 |
'Test::More' => 0, |
|
12 |
}, |
|
update Build.PL
|
13 |
recommends => { |
14 |
'DBD::SQLite' => '1.25' |
|
15 |
}, |
|
add tests
|
16 |
requires => { |
add various thins
|
17 |
'Object::Simple' => 2.0702, |
catch up Object::Simple upda...
|
18 |
'DBI' => 1.605, |
Version 0.0101 release
|
19 |
'DBI::Custom::Query' => 0.0101, |
20 |
'DBI::Custom::Result' => 0.0101, |
|
21 |
'DBI::Custom::SQL::Template' => 0.0101 |
|
add tests
|
22 |
}, |
first commit
|
23 |
add_to_cleanup => [ 'DBI-Custom-*' ], |
24 |
create_makefile_pl => 'traditional', |
|
25 |
); |
|
26 | ||
27 |
$builder->create_build_script(); |