b1ec64dbea
Open-source vector similarity search for Postgres Store your vectors with the rest of your data. Supports: * exact and approximate nearest neighbor search * L2 distance, inner product, and cosine distance * any language with a Postgres client Plus ACID compliance, point-in-time recovery, JOINs, and all of the other great features of Postgres Sponsored by: P. Variablis GmbH
23 lines
438 B
Makefile
23 lines
438 B
Makefile
PORTNAME= pg_vector
|
|
DISTVERSION= v0.5.1
|
|
CATEGORIES= databases
|
|
PKGNAMEPREFIX= postgresql${PGSQL_VER:S/.//}-
|
|
|
|
MAINTAINER= tz@FreeBSD.org
|
|
COMMENT= PostgreSQL extension for vector similarity search
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
USES= gmake pgsql:11+
|
|
WANT_PGSQL= server
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= pgvector
|
|
GH_PROJECT= pgvector
|
|
|
|
MAKE_ENV= USE_PGXS=1
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/vector.so
|
|
|
|
.include <bsd.port.mk>
|