Files
ports/databases/twemproxy/Makefile
Steven Kreuzer d2391216d9 twemproxy, aka nutcracker is a fast and lightweight proxy for memcached and
redis protocol. It was primarily built to reduce the connection count on the
backend caching serve

WWW: https://github.com/twitter/twemproxy
2014-05-12 17:55:07 +00:00

27 lines
687 B
Makefile

# Created by: Steven Kreuzer <skreuzer@FreeBSD.org>
# $FreeBSD$
PORTNAME= twemproxy
PORTVERSION= 0.3.0
CATEGORIES= databases
MASTER_SITES= GOOGLE_CODE
DISTNAME= nutcracker-${PORTVERSION}
MAINTAINER= skreuzer@FreeBSD.org
COMMENT= Fast, light-weight proxy for memcached and redis
LICENSE= APACHE20
PLIST_FILES= sbin/nutcracker \
man/man8/nutcracker.8.gz \
etc/nutcracker.yml.sample
HAS_CONFIGURE= yes
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/nutcracker ${STAGEDIR}${PREFIX}/sbin
${INSTALL_MAN} ${WRKSRC}/man/nutcracker.8 ${STAGEDIR}${MANPREFIX}/man/man8/
${INSTALL_DATA} ${WRKSRC}/conf/nutcracker.yml ${STAGEDIR}${PREFIX}/etc/nutcracker.yml.sample
.include <bsd.port.mk>