updated document
|
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 |
; |
|
fixed Makefile.PL
|
16 | |
17 |
use strict; |
|
18 |
use warnings; |
|
19 |
use ExtUtils::MakeMaker; |
|
20 | ||
21 |
WriteMakefile( |
|
22 |
NAME => 'DBIx::Custom', |
|
23 |
AUTHOR => 'Yuki Kimoto <kimoto.yuki@gmail.com>', |
|
24 |
VERSION_FROM => 'lib/DBIx/Custom.pm', |
|
25 |
ABSTRACT_FROM => 'lib/DBIx/Custom.pm', |
|
26 |
($ExtUtils::MakeMaker::VERSION >= 6.3002 |
|
27 |
? ('LICENSE'=> 'perl') |
|
28 |
: ()), |
|
29 |
PL_FILES => {}, |
|
30 |
PREREQ_PM => { |
|
31 |
'Test::More' => 0, |
|
32 |
'Object::Simple' => '3.0201', |
|
33 |
'DBD::SQLite' => '1.25', |
|
34 |
'DBI' => '1.605' |
|
35 |
}, |
|
36 |
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, |
|
37 |
clean => { FILES => 'DBIx-Custom-*' }, |
|
38 |
); |