python/hypothesis: update to 6.122.3
[oi-userland.git] / components / database / postgresql-14-mysql_fdw / Makefile
blob9c9b24a6eb5a59ec0dc20b15f0e2b8ab3f714982
2 # This file and its contents are supplied under the terms of the
3 # Common Development and Distribution License ("CDDL"), version 1.0.
4 # You may only use this file in accordance with the terms of version
5 # 1.0 of the CDDL.
7 # A full copy of the text of the CDDL should have accompanied this
8 # source. A copy of the CDDL is also available via the Internet at
9 # http://www.illumos.org/license/CDDL.
13 # Copyright 2019 Alexander Pyhalov
14 # Copyright 2022 Marco van Wieringen
17 BUILD_BITS=64
18 BUILD_STYLE=justmake
20 include ../../../make-rules/shared-macros.mk
22 COMPONENT_NAME = mysql_fdw
23 COMPONENT_VERSION = REL-2_7_0
24 IPS_COMPONENT_VERSION = 2.7.0
25 COMPONENT_REVISION = 1
26 COMPONENT_SUMMARY = MySQL Foreign Data Wrapper for PostgreSQL $(PG_VERSION)
27 COMPONENT_SRC = $(COMPONENT_NAME)-$(COMPONENT_VERSION)
28 COMPONENT_ARCHIVE = $(COMPONENT_NAME)-$(COMPONENT_VERSION).tar.gz
29 COMPONENT_ARCHIVE_HASH = sha256:99ca12c545292670fdbd63fe8e17e3b1376b0f88d9cdede24139a7992ca8b4d6
30 COMPONENT_ARCHIVE_URL = https://github.com/EnterpriseDB/$(COMPONENT_NAME)/archive/$(COMPONENT_VERSION).tar.gz
31 COMPONENT_PROJECT_URL = https://github.com/EnterpriseDB/mysql_fdw/
32 COMPONENT_FMRI = database/postgres-$(PG_VERNUM)/mysql_fdw
33 COMPONENT_CLASSIFICATION = System/Databases
34 COMPONENT_LICENSE = MIT
35 COMPONENT_LICENSE_FILE = LICENSE
37 PG_VERSION= 14
38 # Don't depend on host default pg_config
39 # Note, for PostgreSQL >= 9.6 $(PG_HOME)/bin contains 64-bit files
40 PATH= $(PG_HOME)/bin:$(MYSQL_BINDIR.$(BITS)):/usr/sbin:/usr/bin
42 TEST_TARGET= $(NO_TESTS)
44 include $(WS_MAKE_RULES)/common.mk
46 COMPONENT_BUILD_ENV += USE_PGXS=1
47 COMPONENT_BUILD_ARGS += MYSQL_LIBNAME=$(MYSQL_LIBDIR)/libmysqlclient.so
48 COMPONENT_INSTALL_ENV += USE_PGXS=1
50 REQUIRED_PACKAGES += $(PG_DEVELOPER_PKG)
51 REQUIRED_PACKAGES += $(MYSQL_LIBRARY_PKG)