first commit
|
1 |
use strict; |
2 |
use warnings; |
|
3 |
use Module::Build; |
|
4 | ||
5 |
my $builder = Module::Build->new( |
|
packing
|
6 |
module_name => 'DBIx::Custom::SQL::Template', |
first commit
|
7 |
license => 'perl', |
8 |
dist_author => 'Yuki Kimoto <kimoto.yuki@gmail.com>', |
|
packing
|
9 |
dist_version_from => 'lib/DBIx/Custom/SQL/Template.pm', |
first commit
|
10 |
build_requires => { |
11 |
'Test::More' => 0, |
|
12 |
}, |
|
add tests
|
13 |
requires => { |
add various thins
|
14 |
'Object::Simple' => 2.0702, |
add tests
|
15 |
}, |
packing
|
16 |
add_to_cleanup => [ 'DBIx-Custom-SQL-Template-*' ], |
first commit
|
17 |
create_makefile_pl => 'traditional', |
18 |
); |
|
19 | ||
20 |
$builder->create_build_script(); |