DBIx-Custom / Build.PL /
Newer Older
27 lines | 0.743kb
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
    },
update Build.PL
yuki-kimoto authored on 2009-10-31
13
    recommends => {
14
        'DBD::SQLite' => '1.25'
15
    },
add tests
yuki-kimoto authored on 2009-10-25
16
    requires => {
add various thins
yuki-kimoto authored on 2009-10-29
17
        'Object::Simple' => 2.0702,
catch up Object::Simple upda...
yuki-kimoto authored on 2009-10-26
18
        'DBI'            => 1.605,
update Build.PL
yuki-kimoto authored on 2009-10-31
19
        'DBI::Custom::Query' => '0.0101',
20
        'DBI::Custom::Result' => '0.0101',
21
        'DBI::Custom::SQL::Template' => '0.0101'
add tests
yuki-kimoto authored on 2009-10-25
22
    },
first commit
yuki-kimoto authored on 2009-10-13
23
    add_to_cleanup      => [ 'DBI-Custom-*' ],
24
    create_makefile_pl => 'traditional',
25
);
26

            
27
$builder->create_build_script();