mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
31 lines
705 B
Makefile
31 lines
705 B
Makefile
# Created by: Steven Kreuzer <skreuzer@FreeBSD.org>
|
|
|
|
PORTNAME= twemproxy
|
|
PORTVERSION= 0.5.0
|
|
CATEGORIES= databases
|
|
|
|
MAINTAINER= skreuzer@FreeBSD.org
|
|
COMMENT= Fast, light-weight proxy for memcached and redis
|
|
|
|
LICENSE= APACHE20
|
|
|
|
USES= autoreconf gmake libtool
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= twitter
|
|
|
|
LDFLAGS+= -lexecinfo
|
|
|
|
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>
|