Files
shredos.x86_64/package/ima-evm-utils/ima-evm-utils.mk
2025-01-10 19:34:56 +00:00

34 lines
1.2 KiB
Makefile

################################################################################
#
# ima-evm-utils
#
################################################################################
IMA_EVM_UTILS_VERSION = 1.6.2
IMA_EVM_UTILS_SITE = https://github.com/linux-integrity/ima-evm-utils/releases/download/v$(IMA_EVM_UTILS_VERSION)
IMA_EVM_UTILS_LICENSE = LGPL-2.0+ (libimaevm), GPL-2.0+ (evmctl)
IMA_EVM_UTILS_LICENSE_FILES = LICENSES.txt COPYING COPYING.LGPL
IMA_EVM_UTILS_INSTALL_STAGING = YES
IMA_EVM_UTILS_DEPENDENCIES = host-pkgconf keyutils openssl tpm2-tss
# Tarball doesn't contain configure
IMA_EVM_UTILS_AUTORECONF = YES
# Build and install in the src subdirectory. This avoids building the
# documentation, which requires asciidoc and xsltproc. Note that configure still
# needs to be run from the top dir, so _SUBDIR can't be used.
define IMA_EVM_UTILS_BUILD_CMDS
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/src all
endef
define IMA_EVM_UTILS_INSTALL_STAGING_CMDS
$(TARGET_MAKE_ENV) $(MAKE) DESTDIR="$(STAGING_DIR)" -C $(@D)/src install
endef
define IMA_EVM_UTILS_INSTALL_TARGET_CMDS
$(TARGET_MAKE_ENV) $(MAKE) DESTDIR="$(TARGET_DIR)" -C $(@D)/src install
endef
$(eval $(autotools-package))