forked from oliwer/mango
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
31 lines (27 loc) · 955 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
29
30
31
use 5.010001;
use strict;
use warnings;
use Config;
use ExtUtils::MakeMaker;
die "64-bit Perl or one built with -Duse64bitint is required!\n"
unless (($Config{use64bitint} // '') eq 'define' || $Config{longsize} >= 8);
WriteMakefile(
NAME => 'Mango',
VERSION_FROM => 'lib/Mango.pm',
ABSTRACT => 'Pure-Perl non-blocking I/O MongoDB driver',
AUTHOR => 'Olivier Duclos <odc@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/oliwer/mango/issues',
repository => 'https://github.com/oliwer/mango.git',
x_IRC => 'irc://irc.perl.org/#mojo'
},
no_index => {directory => ['t']}
},
PREREQ_PM => {Mojolicious => '5.40'},
test => {TESTS => 't/*.t t/*/*.t'}
);