-
Notifications
You must be signed in to change notification settings - Fork 7
/
Makefile.PL
34 lines (33 loc) · 1.04 KB
/
Makefile.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'DBIx::Custom',
AUTHOR => 'Yuki Kimoto <[email protected]>',
VERSION_FROM => 'lib/DBIx/Custom.pm',
ABSTRACT_FROM => 'lib/DBIx/Custom.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
'Object::Simple' => 3.10,
'DBD::SQLite' => '1.25',
'DBIx::Connector' => '0.56',
'DBI' => '1.605'
},
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/yuki-kimoto/DBIx-Custom.git',
web => 'https://github.com/yuki-kimoto/DBIx-Custom',
},
},
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'DBIx-Custom-*' },
test => {TESTS => 't/*.t t/next/*.t'}
);