mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
ef5a40738b
Changelog https://github.com/timescale/timescaledb/releases/tag/1.5.1 Approved by: timur (mentor) Sponsored by: BBOX.io Differential Revision: https://reviews.freebsd.org/D22361
38 lines
874 B
Makefile
38 lines
874 B
Makefile
# Created by: Kevin Bowling <kbowling@freebsd.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= timescaledb
|
|
PORTVERSION= 1.5.1
|
|
CATEGORIES= databases
|
|
|
|
MAINTAINER= kbowling@FreeBSD.org
|
|
COMMENT= Time-series database built on PostgreSQL
|
|
|
|
LICENSE= APACHE20 TSL
|
|
LICENSE_COMB= multi
|
|
LICENSE_NAME_TSL= Timescale License Agreement
|
|
LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE-APACHE
|
|
LICENSE_FILE_TSL= ${WRKSRC}/tsl/LICENSE-TIMESCALE
|
|
LICENSE_PERMS_TSL= dist-mirror pkg-mirror auto-accept
|
|
|
|
USES= compiler:c11 cmake pgsql:9.6,10,11 ssl
|
|
|
|
USE_GITHUB= YES
|
|
GH_ACCOUNT= timescale
|
|
|
|
PLIST_SUB= PORTVERSION=${PORTVERSION}
|
|
SUB_FILES= pkg-message
|
|
SUB_LIST= PORTVERSION=${PORTVERSION}
|
|
|
|
OPTIONS_DEFINE= TSL
|
|
OPTIONS_DEFAULT= TSL
|
|
OPTIONS_SUB= yes
|
|
|
|
TSL_DESC= Enables TSL licensed code in additon to Apache license code
|
|
TSL_CMAKE_BOOL_OFF= APACHE_ONLY
|
|
|
|
CMAKE_OFF= REGRESS_CHECKS
|
|
WANT_PGSQL= server
|
|
|
|
.include <bsd.port.mk>
|