mirror of
https://git.yoctoproject.org/meta-security
synced 2026-05-07 04:58:47 +00:00
d1d0b2a6d7
This patch updates SRC_URIs using git to include branch=master if no branch is set and also to use protocol=https for github urls as generated by the conversion script in OE-Core. Signed-off-by: Armin Kuster <akuster808@gmail.com>
27 lines
656 B
BlitzBasic
27 lines
656 B
BlitzBasic
SUMMARY = "Command line utility to extend hash of arbitrary data into a TPMs PCR."
|
|
HOMEPAGE = "https://github.com/flihp/pcr-extend"
|
|
SECTION = "security/tpm"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
|
|
|
|
DEPENDS = "libtspi"
|
|
|
|
PV = "0.1+git${SRCPV}"
|
|
SRCREV = "c02ad8f628b3d99f6d4c087b402fe31a40ee6316"
|
|
|
|
SRC_URI = "git://github.com/flihp/pcr-extend.git;branch=master;protocol=https \
|
|
file://fix_openssl11_build.patch "
|
|
|
|
inherit autotools
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
do_compile() {
|
|
oe_runmake -C ${S}/src
|
|
}
|
|
|
|
do_install() {
|
|
install -d ${D}${bindir}
|
|
oe_runmake -C ${S}/src DESTDIR="${D}" install
|
|
}
|