DBIx-Custom / Build.PL /
Newer Older
20 lines | 0.515kb
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(
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
    },
add tests
yuki-kimoto authored on 2009-10-25
13
    requires => {
14
        'Object::Simple' => 0.0602,
15
    },
first commit
yuki-kimoto authored on 2009-10-13
16
    add_to_cleanup      => [ 'DBI-Custom-*' ],
17
    create_makefile_pl => 'traditional',
18
);
19

            
20
$builder->create_build_script();