freebsd-ports/databases/pg_vector/Makefile
Torsten Zuehlsdorff b1ec64dbea databases/pg_vector: New port
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
2023-11-05 01:26:37 +01:00

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>