0528cf4790
Dropped patches from this release. List of commits between 1.3 and 1.3.1: 97b912a7277747db1aca74c7d922e37d41b4f9a8 Release version 1.3.1 62534f212798c540c46e9f362e1d84845175d42e Rename "--validate" to "--ignore-violations" 5b58f475708a6a0c2e70a5d98bbe3f530217d1e1 Drop the ima_measurement "--verify" option 8e2738dd44c0aad2e11f995b802a4d6dcde6b505 extend ima_measurement --pcrs option to support per-bank pcr files 79ab82f55f14839d6b9ba6af78af3367370146bb Rename "Changelog" to "NEWS" 7f9a59c6c613ed8da2947b5e0078a8b75c4e7197 Fix missing {u,g}id_t typedef on musl 1f4e423e7c1d8d5ae85e12368065dec2dc4e87fb pcr_tss: Fix compilation for old compilers Signed-off-by: Petr Vorel <petr.vorel@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
33 lines
1.1 KiB
Makefile
33 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# ima-evm-utils
|
|
#
|
|
################################################################################
|
|
|
|
IMA_EVM_UTILS_VERSION = 1.3.1
|
|
IMA_EVM_UTILS_SITE = http://downloads.sourceforge.net/project/linux-ima/ima-evm-utils
|
|
IMA_EVM_UTILS_LICENSE = GPL-2.0
|
|
IMA_EVM_UTILS_LICENSE_FILES = COPYING
|
|
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))
|