-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathMakefile.PL
executable file
·36 lines (30 loc) · 970 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
32
33
34
35
36
use 5.008001;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Protocol::Redis',
VERSION_FROM => 'lib/Protocol/Redis.pm',
ABSTRACT_FROM => 'lib/Protocol/Redis.pm',
AUTHOR => 'Serhii Zasenko <[email protected]>',
LICENSE => 'perl_5',
META_MERGE => {
dynamic_config => 0,
'meta-spec' => { version => 2 },
resources => {
license => [ 'http://dev.perl.org/licenses/' ],
repository => {
type => 'git',
url => 'https://github.com/und3f/protocol-redis.git',
web => 'https://github.com/und3f/protocol-redis',
},
bugtracker => { web => 'https://github.com/und3f/protocol-redis/issues' },
},
},
MIN_PERL_VERSION => '5.008001',
PREREQ_PM => {
'Carp' => 0,
'Test::More' => '0.94',
},
test => {TESTS => 't/*.t'},
);