mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-23 16:48:27 -05:00
20 lines
531 B
Makefile
20 lines
531 B
Makefile
|
use strict;
|
||
|
use warnings;
|
||
|
use ExtUtils::MakeMaker;
|
||
|
|
||
|
WriteMakefile(
|
||
|
NAME => 'Redis',
|
||
|
AUTHOR => 'Dobrica Pavlinusic <dpavlin@rot13.org>',
|
||
|
VERSION_FROM => 'lib/Redis.pm',
|
||
|
ABSTRACT_FROM => 'lib/Redis.pm',
|
||
|
PL_FILES => {},
|
||
|
PREREQ_PM => {
|
||
|
'Test::More' => 0,
|
||
|
'IO::Socket::INET' => 0,
|
||
|
'Data::Dump' => 0,
|
||
|
'Carp' => 0,
|
||
|
},
|
||
|
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
|
||
|
clean => { FILES => 'Redis-*' },
|
||
|
);
|