]> git.saurik.com Git - redis.git/blame - client-libraries/perl/Makefile.PL
less CPU usage in command parsing, case insensitive config directives
[redis.git] / client-libraries / perl / Makefile.PL
CommitLineData
f78fd11b 1use strict;
2use warnings;
3use ExtUtils::MakeMaker;
4
5WriteMakefile(
6 NAME => 'Redis',
7 AUTHOR => 'Dobrica Pavlinusic <dpavlin@rot13.org>',
8 VERSION_FROM => 'lib/Redis.pm',
9 ABSTRACT_FROM => 'lib/Redis.pm',
10 PL_FILES => {},
11 PREREQ_PM => {
12 'Test::More' => 0,
13 'IO::Socket::INET' => 0,
14 'Data::Dump' => 0,
15 'Carp' => 0,
16 },
17 dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
18 clean => { FILES => 'Redis-*' },
19);