forked from jhthorsen/mojo-mysql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
20 lines (20 loc) · 842 Bytes
/
Makefile.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Generated by git-ship. See 'git-ship --man' for help or https://github.com/jhthorsen/app-git-ship
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Mojo::mysql',
AUTHOR => 'Jan Henning Thorsen <[email protected]>',
LICENSE => 'artistic_2',
ABSTRACT_FROM => 'lib/Mojo/mysql.pm',
VERSION_FROM => 'lib/Mojo/mysql.pm',
EXE_FILES => [qw()],
META_MERGE => {
resources => {
bugtracker => 'https://github.com/jhthorsen/mojo-mysql/issues',
homepage => 'https://github.com/jhthorsen/mojo-mysql',
repository => 'https://github.com/jhthorsen/mojo-mysql.git',
},
},
BUILD_REQUIRES => {'Test::More' => '0.90'},
PREREQ_PM => {'DBD::mysql' => '4.042', 'Mojolicious' => '7.55', 'SQL::Abstract' => '1.81'},
test => {TESTS => (-e 'META.yml' ? 't/*.t' : 't/*.t xt/*.t')},
);