-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathMakefile.PL
More file actions
26 lines (23 loc) · 752 Bytes
/
Makefile.PL
File metadata and controls
26 lines (23 loc) · 752 Bytes
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
use 5.010001;
use Config;
use ExtUtils::MakeMaker;
use strict;
use warnings;
WriteMakefile(
NAME => 'Rethinkdb',
VERSION_FROM => 'lib/Rethinkdb.pm',
ABSTRACT => 'Pure Perl RethinkDB Driver',
AUTHOR => 'Nathan Levin-Greenhaw <njlg@cpan.org>',
LICENSE => 'artistic_2',
META_MERGE => {
requires => { perl => '5.010001' },
resources => {
homepage => 'https://github.com/njlg/perl-rethinkdb',
license => 'http://www.opensource.org/licenses/artistic-license-2.0',
repository => 'https://github.com/njlg/perl-rethinkdb',
bugtracker => 'https://github.com/njlg/perl-rethinkdb/issues'
},
no_index => {directory => ['t']}
},
test => { TESTS => 't/*.t' }
);