From: Scott Fan Date: Mon, 22 Feb 2021 05:39:52 +0000 (+0800) Subject: package/open62541: cleanup tools files after installation X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5a189d3a24e66c8c1d5fd8e63714d2dd79f6c8ac;p=buildroot.git package/open62541: cleanup tools files after installation The open62541 tools directory is indeed 52 MiB, which built as a standalone package named 'libopen62541-1-tools' in launchpad. Nothing is required at runtime. See the official debian control file template: https://raw.githubusercontent.com/open62541/open62541/master/debian/control-template See https://launchpad.net/~open62541-team/+archive/ubuntu/ppa/+packages libopen62541-1 Open source implementation of OPC UA - shared library libopen62541-1-dev Open source implementation of OPC UA - development files libopen62541-1-tools Open source implementation of OPC UA - tools open62541-doc Open source implementation of OPC UA - documentation Signed-off-by: Scott Fan Signed-off-by: Thomas Petazzoni --- diff --git a/package/open62541/open62541.mk b/package/open62541/open62541.mk index 102e09a429..3f75196817 100644 --- a/package/open62541/open62541.mk +++ b/package/open62541/open62541.mk @@ -54,4 +54,11 @@ else OPEN62541_CONF_OPTS += -DUA_ENABLE_PUBSUB_INFORMATIONMODEL=OFF endif +# Remove unneeded files +define OPEN62541_REMOVE_UNNEEDED_FILES + $(RM) -r $(TARGET_DIR)/usr/share/open62541 +endef + +OPEN62541_POST_INSTALL_TARGET_HOOKS += OPEN62541_REMOVE_UNNEEDED_FILES + $(eval $(cmake-package))