hc
2024-03-26 e0728245c89800c2038c23308f2d88969d5b41c8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
################################################################################
#
# ima-evm-utils
#
################################################################################
 
IMA_EVM_UTILS_VERSION = 1.3.2
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))