DBIx-Custom / Build.PL /
Newer Older
17 lines | 0.454kb
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
    },
13
    add_to_cleanup      => [ 'DBI-Custom-*' ],
14
    create_makefile_pl => 'traditional',
15
);
16

            
17
$builder->create_build_script();