diff options
author | Armin Kuster <akuster808@gmail.com> | 2020-09-28 04:05:17 +0000 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2020-09-29 07:18:24 -0700 |
commit | 0a2feda94bf93d593347b7ee974d5dd3d013e7ea (patch) | |
tree | ccd9063d0a8ffe1153831379e2bd25c4def794f0 | |
parent | f0c6f7769c327f2177368459e9cda210ce749187 (diff) | |
download | meta-security-0a2feda94bf93d593347b7ee974d5dd3d013e7ea.tar.gz |
libest: add recipe
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | recipes-security/libest/libest_3.2.0.bb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/recipes-security/libest/libest_3.2.0.bb b/recipes-security/libest/libest_3.2.0.bb new file mode 100644 index 0000000..36ff5ca --- /dev/null +++ b/recipes-security/libest/libest_3.2.0.bb | |||
@@ -0,0 +1,23 @@ | |||
1 | SUMMARY = "EST is used for secure certificate \ | ||
2 | enrollment and is compatible with Suite B certs (as well as RSA \ | ||
3 | and DSA certificates)" | ||
4 | |||
5 | LICENSE = "OpenSSL" | ||
6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=ecb78acde8e3b795de8ef6b61aed5885" | ||
7 | |||
8 | SRCREV = "4ca02c6d7540f2b1bcea278a4fbe373daac7103b" | ||
9 | SRC_URI = "git://github.com/cisco/libest" | ||
10 | |||
11 | DEPENDS = "openssl" | ||
12 | |||
13 | inherit autotools-brokensep | ||
14 | |||
15 | EXTRA_OECONF = "--disable-pthreads --with-ssl-dir=${STAGING_LIBDIR}" | ||
16 | |||
17 | CFLAGS += "-fcommon" | ||
18 | |||
19 | S = "${WORKDIR}/git" | ||
20 | |||
21 | PACKAGES = "${PN} ${PN}-dbg ${PN}-dev" | ||
22 | |||
23 | FILES_${PN} = "${bindir}/* ${libdir}/libest-3.2.0p.so" | ||