DBIx-Custom / Build.PL /
Newer Older
23 lines | 0.62kb
packaging one directory
yuki-kimoto authored on 2009-11-16
1
use strict;
2
use warnings;
3
use Module::Build;
4

            
5
my $builder = Module::Build->new(
6
    module_name         => 'DBIx::Custom',
7
    license             => 'perl',
8
    dist_author         => 'Yuki Kimoto <kimoto.yuki@gmail.com>',
9
    dist_version_from   => 'lib/DBIx/Custom.pm',
10
    build_requires => {
11
        'Test::More' => 0,
12
    },
13
    requires => {
14
        'Object::Simple' => 2.0702,
15
        'DBI'            => 1.605,
bind_filter argument is chan...
yuki-kimoto authored on 2009-11-19
16
        'DBD::SQLite'    => 1.25,
17
        'Time::Piece'    => 1.15
packaging one directory
yuki-kimoto authored on 2009-11-16
18
    },
19
    add_to_cleanup      => [ 'DBIx-Custom-*' ],
20
    create_makefile_pl => 'traditional',
21
);
22

            
23
$builder->create_build_script();