blob: b4c61654f1c2857b061d65fce26b81a309d97d76 [file] [log] [blame]
Andrew Geisslerd1d22e62020-10-16 10:14:32 -05001SUMMARY = "EST is used for secure certificate \
2enrollment and is compatible with Suite B certs (as well as RSA \
3and DSA certificates)"
4
5LICENSE = "OpenSSL"
6LIC_FILES_CHKSUM = "file://LICENSE;md5=ecb78acde8e3b795de8ef6b61aed5885"
7
8SRCREV = "4ca02c6d7540f2b1bcea278a4fbe373daac7103b"
Patrick Williams53961c22022-01-20 11:06:23 -06009SRC_URI = "git://github.com/cisco/libest;branch=main;protocol=https"
Andrew Geisslerd1d22e62020-10-16 10:14:32 -050010
11DEPENDS = "openssl"
12
13#fatal error: execinfo.h: No such file or directory
Patrick Williams213cb262021-08-07 19:21:33 -050014DEPENDS:append:libc-musl = " libexecinfo"
Andrew Geisslerd1d22e62020-10-16 10:14:32 -050015
16inherit autotools-brokensep
17
18EXTRA_OECONF = "--disable-pthreads --with-ssl-dir=${STAGING_LIBDIR}"
19
20CFLAGS += "-fcommon"
Patrick Williams213cb262021-08-07 19:21:33 -050021LDFLAGS:append:libc-musl = " -lexecinfo"
Andrew Geisslerd1d22e62020-10-16 10:14:32 -050022
23S = "${WORKDIR}/git"
24
25PACKAGES = "${PN} ${PN}-dbg ${PN}-dev"
26
Patrick Williams213cb262021-08-07 19:21:33 -050027FILES:${PN} = "${bindir}/* ${libdir}/libest-3.2.0p.so"
Patrick Williams53961c22022-01-20 11:06:23 -060028
29# https://github.com/cisco/libest/issues/104
Andrew Geissler7e0e3c02022-02-25 20:34:39 +000030SKIP_RECIPE[libest] ?= "Needs porting to openssl 3.x"