Index: head/textproc/Makefile =================================================================== --- head/textproc/Makefile +++ head/textproc/Makefile @@ -1432,6 +1432,7 @@ SUBDIR += re-flex SUBDIR += re_graph SUBDIR += redet + SUBDIR += redisearch SUBDIR += redland SUBDIR += redland-bindings SUBDIR += refdb Index: head/textproc/redisearch/Makefile =================================================================== --- head/textproc/redisearch/Makefile +++ head/textproc/redisearch/Makefile @@ -0,0 +1,30 @@ +# Created by: Sergey A. Osokin +# $FreeBSD$ + +PORTNAME= redisearch +DISTVERSIONPREFIX= v +DISTVERSION= 1.4.24 +CATEGORIES= textproc + +MAINTAINER= osa@FreeBSD.org +COMMENT= Full-text search over Redis + +LICENSE= UNKNOWN +LICENSE_NAME= Redis Source Available License Agreement +LICENSE_FILE= ${WRKSRC}/LICENSE +LICENSE_PERMS= dist-mirror pkg-mirror auto-accept + +USES= cmake + +USE_GITHUB= yes +GH_ACCOUNT= RediSearch +GH_PROJECT= RediSearch + +CMAKE_ARGS= -DGIT_DESCRIBE_VERSION:STRING=${PKGVERSION} + +PLIST_FILES= lib/redisearch.so + +do-install: + ${INSTALL_LIB} ${INSTALL_WRKSRC}/redisearch.so ${STAGEDIR}${PREFIX}/lib + +.include Index: head/textproc/redisearch/distinfo =================================================================== --- head/textproc/redisearch/distinfo +++ head/textproc/redisearch/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1582247654 +SHA256 (RediSearch-RediSearch-v1.4.24_GH0.tar.gz) = 7b0ff9ddfde9e235098f323d2f8ff53d58df87e43f3ada95aa0af4568a3d6ddd +SIZE (RediSearch-RediSearch-v1.4.24_GH0.tar.gz) = 3573486 Index: head/textproc/redisearch/pkg-descr =================================================================== --- head/textproc/redisearch/pkg-descr +++ head/textproc/redisearch/pkg-descr @@ -0,0 +1,12 @@ +RediSearch is a source available Full-Text and Secondary Index +engine over Redis, developed by Redis Labs. + +Redisearch implements a search engine on top of Redis, but +unlike other Redis search libraries, it does not use internal +data structures like sorted sets. + +This also enables more advanced features, like exact phrase +matching and numeric filtering for text queries, that are not +possible or efficient with traditional Redis search approaches. + +WWW: https://oss.redislabs.com/redisearch/