... | ... |
@@ -13,3 +13,26 @@ WriteMakefile |
13 | 13 |
} |
14 | 14 |
) |
15 | 15 |
; |
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 |
+); |