-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
27 lines (25 loc) · 892 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
use strict;
use ExtUtils::MakeMaker;
eval 'use ExtUtils::MakeMaker::Coverage';
WriteMakefile(
NAME => 'DBIx::Connect::FromConfig',
LICENSE => 'perl',
AUTHOR => 'Sebastien Aperghis-Tramoni <[email protected]>',
VERSION_FROM => 'lib/DBIx/Connect/FromConfig.pm',
ABSTRACT_FROM => 'lib/DBIx/Connect/FromConfig.pm',
PREREQ_PM => {
# prereqs
'Carp' => 0,
'DBI' => 0,
# build/test prereqs
'Test::More' => 0,
},
META_MERGE => {
resources => {
repository => "https://github.com/maddingue/DBIx-Connect-FromConfig.git",
},
},
PL_FILES => {},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'DBIx-Connect-FromConfig-*' },
);