forked from mamod/DBD-Crate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
37 lines (35 loc) · 1.02 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
35
36
37
use strict;
use 5.010001;
use ExtUtils::MakeMaker;
use DBI;
use DBI::DBD;
WriteMakefile(
dbd_edit_mm_attribs({
NAME => 'DBD::Crate',
VERSION_FROM => 'lib/DBD/Crate.pm',
ABSTRACT_FROM => 'lib/DBD/Crate.pm',
CONFIGURE_REQUIRES => {
'DBI' => 1.50,
},
PREREQ_PM => {
'DBI' => 1.50,
'HTTP::Tiny' => 0.055,
'JSON::MaybeXS' => 1.003003,
'Test::More' => 0,
'Digest::SHA1' => 0,
},
LICENSE => 'perl',
AUTHOR => 'Mamod Mehyar <[email protected]>',
"TEST_REQUIRES" => {},
META_MERGE => {
resources => {
repository => 'git://github.com/mamod/DBD-Crate.git',
bugtracker => 'https://github.com/mamod/DBD-Crate/issues',
}
}
},
{ create_pp_tests => 1})
);
sub MY::postamble {
return DBI::DBD::dbd_postamble(@_);
}