summaryrefslogtreecommitdiffstats
path: root/meta-tpm/recipes-tpm/pcr-extend/pcr-extend_git.bb
blob: a5343297554149cd54fe584cd4fd0dfbc0adbdbf (plain)
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
SUMMARY = "Command line utility to extend hash of arbitrary data into a TPMs PCR."
SECTION = "security/tpm"

LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"

DEPENDS = "libtspi"

PV = "0.1+git${SRCPV}"

SRC_URI = "\
    git://github.com/flihp/pcr-extend.git \
"
SRCREV = "c02ad8f628b3d99f6d4c087b402fe31a40ee6316"

S = "${WORKDIR}/git"

inherit autotools

do_compile() {
    oe_runmake -C "${S}"
}

do_install() {
    install -d "${D}${bindir}"
    DESTDIR="${D}" oe_runmake install -C "${S}"
}