DBIx-Custom / Build.PL /
Newer Older
21 lines | 0.55kb
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 => {
add various thins
yuki-kimoto authored on 2009-10-29
14
        'Object::Simple' => 2.0702,
catch up Object::Simple upda...
yuki-kimoto authored on 2009-10-26
15
        'DBI'            => 1.605,
add tests
yuki-kimoto authored on 2009-10-25
16
    },
first commit
yuki-kimoto authored on 2009-10-13
17
    add_to_cleanup      => [ 'DBI-Custom-*' ],
18
    create_makefile_pl => 'traditional',
19
);
20

            
21
$builder->create_build_script();