DBIx-Custom / Makefile.PL /
Newer Older
15 lines | 0.456kb
updated document
yuki-kimoto authored on 2010-10-21
1
use ExtUtils::MakeMaker;
2
WriteMakefile
3
(
4
          'INSTALLDIRS' => 'site',
5
          'NAME' => 'DBIx::Custom',
6
          'EXE_FILES' => [],
7
          'VERSION_FROM' => 'lib/DBIx/Custom.pm',
8
          'PREREQ_PM' => {
9
                           'Test::More' => 0,
10
                           'Object::Simple' => '3.0201',
11
                           'DBD::SQLite' => '1.25',
12
                           'DBI' => '1.605'
13
                         }
14
        )
15
;