mirror of
https://git.yoctoproject.org/meta-security
synced 2026-07-16 03:47:21 +00:00
28f9b5f1ac
KeyNote is a simple and flexible trust-management system designed to work well for a variety of large- and small- scale Internet-based applications Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
38 lines
1.2 KiB
BlitzBasic
38 lines
1.2 KiB
BlitzBasic
SUMMARY = "Keynote tool and library"
|
|
DESCRIPTION = "KeyNote is a simple and flexible trust-management \
|
|
system designed to work well for a variety of large- and small- \
|
|
scale Internet-based applications. \
|
|
"
|
|
HOMEPAGE = "http://www.cs.columbia.edu/~angelos/keynote.html"
|
|
SECTION = "security"
|
|
|
|
LICENSE = "ISC"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=3a265095c549c1808686a676f2699c98"
|
|
|
|
SRC_URI = "http://www.cs.columbia.edu/~angelos/Code/${BPN}.tar.gz \
|
|
file://configure-remove-hardcode-path.patch \
|
|
file://makefile-add-ldflags.patch \
|
|
file://run-ptest \
|
|
"
|
|
|
|
inherit autotools-brokensep ptest
|
|
|
|
SRC_URI[md5sum] = "ba58a0297c421dc6aa671e6b753ef695"
|
|
SRC_URI[sha256sum] = "62f7a9d57ceb6bcdd47b604b637a7ac8ed337cef0ab02f1fa28b7e61c9b15821"
|
|
|
|
DEPENDS = "flex openssl"
|
|
|
|
EXTRA_OEMAKE += "test-sample -j1"
|
|
|
|
do_install() {
|
|
install -D -m 0755 ${S}/keynote ${D}${bindir}/keynote
|
|
install -D -m 0644 ${S}/libkeynote.a ${D}${libdir}/libkeynote.a
|
|
install -D -m 0644 ${S}/keynote.h ${D}${includedir}/keynote.h
|
|
}
|
|
|
|
do_install_ptest() {
|
|
install -D -m 0755 ${S}/sample-app ${D}${PTEST_PATH}
|
|
cp -r ${S}/testsuite ${D}${PTEST_PATH}
|
|
sed -i 's|@PTEST_PATH@|${PTEST_PATH}|' ${D}${PTEST_PATH}/run-ptest
|
|
}
|