This is the C client library for Couchbase. It communicates with the cluster and speaks the relevant protocols necessary to connect to the cluster and execute data operations. https://github.com/couchbase/libcouchbase/ PR: 205377 Submitted by: gebhart@secnetix.de, Sergey Avseyev <sergey.avseyev@gmail.com>
28 lines
512 B
Makefile
28 lines
512 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= libcouchbase
|
|
DISTVERSION= 2.6.2
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://packages.couchbase.com/clients/c/
|
|
|
|
MAINTAINER= sergey@couchbase.com
|
|
COMMENT= Multithreaded noSQL database (client and library)
|
|
|
|
LICENSE= APACHE20
|
|
|
|
LIB_DEPENDS= libevent.so:devel/libevent2 \
|
|
libev.so:devel/libev \
|
|
libuv.so:devel/libuv
|
|
|
|
BUILDDIR= ${WRKDIR}/${DISTNAME}/build
|
|
|
|
CMAKE_ARGS+= -DLCB_NO_TESTS=1
|
|
|
|
USES= cmake perl5
|
|
USE_LDCONFIG= yes
|
|
USE_PERL5= build run
|
|
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
.include <bsd.port.mk>
|