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 strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'DBD::Patroni',
AUTHOR => 'Xavier Guimard',
VERSION_FROM => 'lib/DBD/Patroni.pm',
ABSTRACT_FROM => 'lib/DBD/Patroni.pm',
LICENSE => 'perl_5',
MIN_PERL_VERSION => '5.010001',
PREREQ_PM => {
'DBI' => '1.614',
'DBD::Pg' => '3.0',
'LWP::UserAgent' => 0,
'JSON' => 0,
},
TEST_REQUIRES => {
'Test::More' => 0,
},
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/guimard/dbd-patroni.git',
web => 'https://github.com/guimard/dbd-patroni',
},
bugtracker => {
web => 'https://github.com/guimard/dbd-patroni/issues',
},
},
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'DBD-Patroni-*' },
);
|