32 lines
703 B
Makefile
32 lines
703 B
Makefile
COMMENT = database designed to make SQL scalable for time-series data
|
|
|
|
GH_ACCOUNT = timescale
|
|
GH_PROJECT = timescaledb
|
|
GH_TAGNAME = 2.12.0
|
|
|
|
CATEGORIES = databases
|
|
HOMEPAGE = https://www.timescale.com/
|
|
|
|
MAINTAINER = Renato Aguiar <renato@renatoaguiar.net>
|
|
|
|
# Apache 2.0
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
MODULES = devel/cmake
|
|
SUBST_VARS += GH_TAGNAME
|
|
|
|
WANTLIB = c crypto pq ssl
|
|
|
|
COMPILER = base-clang ports-gcc
|
|
|
|
LIB_DEPENDS = databases/postgresql
|
|
BUILD_DEPENDS = databases/postgresql,-server
|
|
RUN_DEPENDS = databases/postgresql,-server
|
|
|
|
CONFIGURE_ARGS += -DREGRESS_CHECKS=OFF \
|
|
-DLINTER=OFF \
|
|
-DCLANG_FORMAT=OFF \
|
|
-DSEND_TELEMETRY_DEFAULT=OFF \
|
|
-DCMAKE_DISABLE_FIND_PACKAGE_Git=ON
|
|
|
|
.include <bsd.port.mk>
|