-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMakefile.PL
36 lines (36 loc) · 1002 Bytes
/
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
35
36
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => "DBIx::Struct",
AUTHOR => "Anton Petrusevich",
VERSION => "0.50",
INSTALLDIRS => 'site',
LICENSE => "artistic_2",
MIN_PERL_VERSION => "5.014000",
META_MERGE => {
"meta-spec" => {version => 2},
resources => {
bugtracker => {web => 'https://github.com/jef-sure/dbix-struct-github/issues'},
repository => {
type => 'git',
url => 'https://github.com/jef-sure/dbix-struct-github.git',
web => 'https://github.com/jef-sure/dbix-struct-github',
},
},
},
PREREQ_PM => {
'DBIx::Connector' => "0.52",
'Digest::MD5' => 0,
'JSON' => 0,
'Scalar::Util' => 0,
'SQL::Abstract' => 0,
},
TEST_REQUIRES => {'Test::More' => 0},
test => {TESTS => "t/*.t"},
dist => {
DIST_DEFAULT => 'all tardist',
COMPRESS => 'gzip -vf',
SUFFIX => '.gz',
},
clean => {FILES => '*~',},
realclean => {FILES => '*~',},
);