fixed Makefile.PL
|
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
|
16 |
'Object::Simple' => 3.0621, |
fixed Makefile.PL
|
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
|
22 |
test => {TESTS => 't/*.t t/next/*.t'} |
fixed Makefile.PL
|
23 |
); |