Newer Older
20 lines | 0.559kb
first commit
yuki-kimoto authored on 2009-10-13
1
use strict;
2
use warnings;
3
use Module::Build;
4

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

            
20
$builder->create_build_script();