summaryrefslogtreecommitdiffstats
path: root/rules/timescaledb.make
blob: c4111dc6630e1aa482078989e03d15103c8869e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# -*-makefile-*-
#
# Copyright (C) 2019 by Bjoern Esser <bes@pengutronix.de>
#
# For further information about the PTXdist project and license conditions
# see the README file.
#

#
# We provide this package
#
PACKAGES-$(PTXCONF_TIMESCALEDB) += timescaledb

#
# Paths and names
#
TIMESCALEDB_VERSION	:= 2.3.0
TIMESCALEDB_MD5		:= fc0a789deb5097c7213c231190e4b15f
TIMESCALEDB		:= timescaledb-$(TIMESCALEDB_VERSION)
TIMESCALEDB_SUFFIX	:= tar.gz
TIMESCALEDB_URL		:= https://github.com/timescale/timescaledb/archive/$(TIMESCALEDB_VERSION).$(TIMESCALEDB_SUFFIX)
TIMESCALEDB_SOURCE	:= $(SRCDIR)/$(TIMESCALEDB).$(TIMESCALEDB_SUFFIX)
TIMESCALEDB_DIR		:= $(BUILDDIR)/$(TIMESCALEDB)
TIMESCALEDB_LICENSE	:= Apache-2.0

# ----------------------------------------------------------------------------
# Prepare
# ----------------------------------------------------------------------------

#
# cmake
#
TIMESCALEDB_CONF_TOOL	:= cmake
TIMESCALEDB_CONF_OPT	:= \
	$(CROSS_CMAKE_USR) \
	-DCMAKE_PROGRAM_PATH="$(PTXDIST_SYSROOT_HOST)" \
	-DGIT_EXECUTABLE=false \
	-DPG_BINDIR="/usr/bin" \
	-DPG_INCLUDEDIR="$(PTXDIST_SYSROOT_TARGET)/usr/include" \
	-DPG_INCLUDEDIR_SERVER="$(PTXDIST_SYSROOT_TARGET)/usr/include/postgresql/server" \
	-DPG_LIBDIR="$(PTXDIST_SYSROOT_TARGET)/usr/lib" \
	-DPG_PKGLIBDIR="/usr/lib/postgresql" \
	-DPG_SHAREDIR="/usr/share/postgresql" \
	-DAPACHE_ONLY=1 \
	-DASSERTIONS=OFF \
	-DCODECOVERAGE=OFF \
	-DENABLE_OPTIMIZER_DEBUG=OFF \
	-DLINTER=OFF \
	-DREGRESS_CHECKS=0 \
	-DSEND_TELEMETRY_DEFAULT=0 \
	-DUSE_OPENSSL=0 \
	-DWARNINGS_AS_ERRORS=OFF

# -DAPACHE_ONLY=1             is needed to build a free/libre version
#                             of TimescaleDB.
# -DREGRESS_CHECKS=0          disables isolation regress checks,
#                             which need pg_regress.
# -DSEND_TELEMETRY_DEFAULT=0  disables calling home.
# -DUSE_OPENSSL=0             disables OpenSSL.

# ----------------------------------------------------------------------------
# Target-Install
# ----------------------------------------------------------------------------

$(STATEDIR)/timescaledb.targetinstall:
	@$(call targetinfo)

	@$(call install_init, timescaledb)
	@$(call install_fixup, timescaledb,PRIORITY,optional)
	@$(call install_fixup, timescaledb,SECTION,base)
	@$(call install_fixup, timescaledb,AUTHOR,"Bjoern Esser <bes@pengutronix.de>")
	@$(call install_fixup, timescaledb,DESCRIPTION,missing)

	@$(call install_tree, timescaledb, 0, 0, -, /usr/lib/postgresql)
	@$(call install_tree, timescaledb, 0, 0, -, /usr/share/postgresql)

	@$(call install_finish, timescaledb)

	@$(call touch)

# vim: syntax=make