forked from mojolicious/mojo-pg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
28 lines (25 loc) · 817 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
use 5.010001;
use strict;
use warnings;
use utf8;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Mojo::Pg',
VERSION_FROM => 'lib/Mojo/Pg.pm',
ABSTRACT => 'Mojolicious ♥ PostgreSQL',
AUTHOR => 'Sebastian Riedel <sri@cpan.org>',
LICENSE => 'artistic_2',
META_MERGE => {
requires => {perl => '5.010001'},
resources => {
license => 'http://www.opensource.org/licenses/artistic-license-2.0',
homepage => 'http://mojolicio.us',
bugtracker => 'https://github.com/kraih/mojo-pg/issues',
repository => 'https://github.com/kraih/mojo-pg.git',
x_IRC => 'irc://irc.perl.org/#mojo'
},
no_index => {directory => ['t']}
},
PREREQ_PM => {Mojolicious => '6.0', 'DBD::Pg' => 0},
test => {TESTS => 't/*.t t/*/*.t'}
);