c20e8bca2b
Turso is an open-source, SQLite-compatible database written in Rust that lets developers create millions of small, file-based databases for AI agents, multi-tenant SaaS applications, and edge workloads. Unlike traditional databases that run as a single shared server process, Turso treats each database as a lightweight file that can be spun up instantly, replicated globally, or synced to a device.
27 lines
535 B
Makefile
27 lines
535 B
Makefile
PORTNAME= turso
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.6.1
|
|
CATEGORIES= databases
|
|
|
|
MAINTAINER= wen@FreeBSD.org
|
|
COMMENT= In-process SQL database written in Rust, compatible with SQLite
|
|
WWW= https://github.com/tursodatabase/turso
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.md
|
|
|
|
USES= cargo python:build
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= tursodatabase
|
|
|
|
MAKE_ENV+= PYO3_PYTHON=${PYTHON_CMD}
|
|
|
|
PLIST_FILES= bin/tursodb
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKDIR}/target/release/tursodb \
|
|
${STAGEDIR}${PREFIX}/bin/tursodb
|
|
|
|
.include <bsd.port.mk>
|