mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
e9981d0bc7
- Support staging Approved by: crees, tabthorpe (mentors, implicit)
27 lines
503 B
Makefile
27 lines
503 B
Makefile
# Created by: Grzegorz Blach <gblach@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= hiredis
|
|
PORTVERSION= 0.11.0
|
|
CATEGORIES= databases
|
|
|
|
MAINTAINER= gblach@FreeBSD.org
|
|
COMMENT= Minimalistic C client library for the Redis database
|
|
|
|
LICENSE= BSD
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= redis
|
|
GH_TAGNAME= v${PORTVERSION}
|
|
GH_COMMIT= 0fff0f1
|
|
|
|
USES= gmake
|
|
MAKE_ARGS+= PREFIX=${STAGEDIR}${PREFIX}
|
|
CFLAGS+= -fPIC
|
|
USE_LDCONFIG= yes
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/^REAL_/s/ \$$(ARCH)//' ${WRKSRC}/Makefile
|
|
|
|
.include <bsd.port.mk>
|