271461b81b
Bump the version to 1661 and remove the patch 0002-Remove-unused-global-variable-to-fix-compilation-with-GCC-10.patch. This patch is no longer needed because the fix has been added upstream. Signed-off-by: Philippe Reynes <philippe.reynes@softathome.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
24 lines
716 B
Makefile
24 lines
716 B
Makefile
################################################################################
|
|
#
|
|
# ibm-sw-tpm2
|
|
#
|
|
################################################################################
|
|
|
|
IBM_SW_TPM2_VERSION = 1661
|
|
IBM_SW_TPM2_SOURCE = ibmtpm$(IBM_SW_TPM2_VERSION).tar.gz
|
|
IBM_SW_TPM2_SITE = https://sourceforge.net/projects/ibmswtpm2/files
|
|
IBM_SW_TPM2_LICENSE = BSD-3-Clause
|
|
IBM_SW_TPM2_LICENSE_FILES = LICENSE
|
|
IBM_SW_TPM2_DEPENDENCIES = openssl
|
|
|
|
define IBM_SW_TPM2_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/src $(TARGET_CONFIGURE_OPTS)
|
|
endef
|
|
|
|
define IBM_SW_TPM2_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/src $(TARGET_CONFIGURE_OPTS) install \
|
|
DESTDIR=$(TARGET_DIR)
|
|
endef
|
|
|
|
$(eval $(generic-package))
|