mirror of
https://git.yoctoproject.org/meta-security
synced 2026-07-16 15:57:21 +00:00
9e5c7358ad
V2: remove CACHED_CONFIGUREVARS, not needed after all fix typo in selinux option Signed-off-by: Armin Kuster <akuster808@gmail.com>
36 lines
1.1 KiB
BlitzBasic
36 lines
1.1 KiB
BlitzBasic
SUMMARY = "SWTPM - Software TPM Emulator"
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=fe8092c832b71ef20dfe4c6d3decb3a8"
|
|
SECTION = "apps"
|
|
|
|
DEPENDS = "libtasn1 fuse expect socat glib-2.0 libtpm libtpm-native"
|
|
|
|
SRCREV = "2cd10cee2f74c84bda22081514b6b2cb566fa42d"
|
|
SRC_URI = "git://github.com/stefanberger/swtpm.git \
|
|
file://fix_lib_search_path.patch"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit autotools-brokensep pkgconfig
|
|
PARALLEL_MAKE = ""
|
|
|
|
TSS_USER="tss"
|
|
TSS_GROUP="tss"
|
|
|
|
PACKAGECONFIG ?= "openssl"
|
|
PACKAGECONFIG += "${@bb.utils.contains('DISTRO_FEATURES', 'selinux', 'selinux', '', d)}"
|
|
PACKAGECONFIG[openssl] = "--with-openssl, --without-openssl, openssl"
|
|
PACKAGECONFIG[gnutls] = "--with-gnutls, --without-gnutls, gnutls"
|
|
PACKAGECONFIG[selinux] = "--with-selinux, --without-selinux, libselinux"
|
|
|
|
EXTRA_OECONF += "--with-tss-user=${TSS_USER} --with-tss-group=${TSS_GROUP}"
|
|
|
|
export SEARCH_DIR = "${STAGING_LIBDIR_NATIVE}"
|
|
|
|
USERADD_PACKAGES = "${PN}"
|
|
GROUPADD_PARAM_${PN} = "--system ${TSS_USER}"
|
|
USERADD_PARAM_${PN} = "--system -g ${TSS_GROUP} --home-dir \
|
|
--no-create-home --shell /bin/false ${BPN}"
|
|
|
|
RDEPENDS_${PN} = "libtpm expect socat bash"
|