Python interface for Tkrzw library implementing DBM with various algorithms. Tkrzw features high degrees of performance, concurrency, scalability and durability. Tkrzw is a successor of Kyoto Cabinet. WWW: https://dbmx.net/tkrzw/ PR: 289951 Reported by: Paavo-Einari Kaipila <pkaipila@gmail.com> (new maintainer)
26 lines
631 B
Makefile
26 lines
631 B
Makefile
PORTNAME= tkrzw
|
|
DISTVERSION= 0.1.32
|
|
CATEGORIES= databases python
|
|
MASTER_SITES= https://dbmx.net/${PORTNAME}/pkg-python/
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= ${PORTNAME}-python-${DISTVERSION}
|
|
|
|
MAINTAINER= pkaipila@gmail.com
|
|
COMMENT= Python interface for Tkrzw, successor of Kyoto Cabinet
|
|
WWW= https://dbmx.net/tkrzw/
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libtkrzw.so:databases/tkrzw
|
|
|
|
USES= localbase python
|
|
USE_PYTHON= autoplist distutils flavors
|
|
|
|
LDFLAGS+= -Wl,--as-needed
|
|
|
|
post-install:
|
|
${FIND} ${STAGEDIR}${PYTHON_SITELIBDIR} -name '*.so' -exec ${STRIP_CMD} {} +
|
|
|
|
.include <bsd.port.mk>
|