mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-19 16:40:46 -09:00
The current mirror now only has the version 0.40.0 available.
Older version of apache packages moved to the "archive.apache.org"
location.
Fixes: https://autobuild.buildroot.org/results/853/853c354b9bde4408e122046496fd3f0e7ffb0b55
Signed-off-by: Thomas Perale <thomas.perale@mind.be>
Reviewed-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Tested-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
(cherry picked from commit 60fe9b3733)
Signed-off-by: Thomas Perale <thomas.perale@mind.be>
49 lines
1.4 KiB
Makefile
49 lines
1.4 KiB
Makefile
################################################################################
|
|
#
|
|
# qpid-proton
|
|
#
|
|
################################################################################
|
|
|
|
QPID_PROTON_VERSION = 0.35.0
|
|
QPID_PROTON_SITE = \
|
|
https://archive.apache.org/dist/qpid/proton/$(QPID_PROTON_VERSION)
|
|
QPID_PROTON_LICENSE = Apache-2.0
|
|
QPID_PROTON_LICENSE_FILES = LICENSE.txt
|
|
QPID_PROTON_CPE_ID_VENDOR = apache
|
|
QPID_PROTON_CPE_ID_PRODUCT = qpid_proton
|
|
QPID_PROTON_INSTALL_STAGING = YES
|
|
QPID_PROTON_DEPENDENCIES = \
|
|
host-python3 \
|
|
util-linux \
|
|
$(if $(BR2_PACKAGE_LIBUV),libuv) \
|
|
$(if $(BR2_PACKAGE_OPENSSL),openssl)
|
|
|
|
# python and ruby language bindings are enabled when host-swig tool is present
|
|
# in HOST_DIR.
|
|
# go language binding is enabled when host-go is present
|
|
# For now, disable all of them.
|
|
QPID_PROTON_CONF_OPTS = \
|
|
-DBUILD_CPP=ON \
|
|
-DBUILD_GO=OFF \
|
|
-DBUILD_PYTHON=OFF \
|
|
-DBUILD_RUBY=OFF \
|
|
-DENABLE_FUZZ_TESTING=OFF \
|
|
-DENABLE_VALGRIND=OFF \
|
|
-DENABLE_WARNING_ERROR=OFF \
|
|
-DPYTHON_EXECUTABLE=$(HOST_DIR)/bin/python3
|
|
|
|
ifeq ($(BR2_PACKAGE_JSONCPP),y)
|
|
QPID_PROTON_DEPENDENCIES += jsoncpp
|
|
QPID_PROTON_CONF_OPTS += -DENABLE_JSONCPP=ON
|
|
else
|
|
QPID_PROTON_CONF_OPTS += -DENABLE_JSONCPP=OFF
|
|
endif
|
|
|
|
define QPID_PROTON_REMOVE_USELESS_FILES
|
|
rm -fr $(TARGET_DIR)/usr/share/proton/
|
|
endef
|
|
|
|
QPID_PROTON_POST_INSTALL_TARGET_HOOKS += QPID_PROTON_REMOVE_USELESS_FILES
|
|
|
|
$(eval $(cmake-package))
|