DBIx-Custom / Makefile.PL /
Newer Older
23 lines | 0.714kb
fixed Makefile.PL
yuki-kimoto authored on 2010-10-22
1
use strict;
2
use warnings;
3
use ExtUtils::MakeMaker;
4

            
5
WriteMakefile(
6
    NAME                => 'DBIx::Custom',
7
    AUTHOR              => 'Yuki Kimoto <kimoto.yuki@gmail.com>',
8
    VERSION_FROM        => 'lib/DBIx/Custom.pm',
9
    ABSTRACT_FROM       => 'lib/DBIx/Custom.pm',
10
    ($ExtUtils::MakeMaker::VERSION >= 6.3002
11
      ? ('LICENSE'=> 'perl')
12
      : ()),
13
    PL_FILES            => {},
14
      PREREQ_PM => {
15
        'Test::More' => 0,
updatedd pod
Yuki Kimoto authored on 2011-06-12
16
        'Object::Simple' => 3.0621,
fixed Makefile.PL
yuki-kimoto authored on 2010-10-22
17
        'DBD::SQLite' => '1.25',
18
        'DBI' => '1.605'
19
    },
20
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
21
    clean               => { FILES => 'DBIx-Custom-*' },
added Next version
Yuki Kimoto authored on 2011-11-16
22
    test => {TESTS => 't/*.t t/next/*.t'}
fixed Makefile.PL
yuki-kimoto authored on 2010-10-22
23
);