diff options
| author | Dan McGregor <dan.mcgregor@usask.ca> | 2024-04-05 11:00:32 -0600 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2024-04-07 08:36:36 -0700 |
| commit | 268d27a4f1375fa3dd9e7583e452497d7e2dca30 (patch) | |
| tree | c95f893494f790f7e9e867fd4597d3c630c2fa5d /meta-oe | |
| parent | 5cfc85d2cf08fb74097e70ea300f7b01e47a5185 (diff) | |
| download | meta-openembedded-268d27a4f1375fa3dd9e7583e452497d7e2dca30.tar.gz | |
libfido2: new recipe
libfido2 adds support for FIDO2 authenticators. It's required for
OpenSSH to support FIDO backed keys, which I intend to add optional
support for in oe-core.
Signed-off-by: Dan McGregor <dan.mcgregor@usask.ca>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe')
| -rw-r--r-- | meta-oe/recipes-support/libfido2/libfido2_1.14.0.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/libfido2/libfido2_1.14.0.bb b/meta-oe/recipes-support/libfido2/libfido2_1.14.0.bb new file mode 100644 index 0000000000..08d3f4e84d --- /dev/null +++ b/meta-oe/recipes-support/libfido2/libfido2_1.14.0.bb | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | SUMMARY = "FIDO 2.0 support library" | ||
| 2 | DESCRIPTION = "libfido2 provides library functionality and command-line tools to \ | ||
| 3 | communicate with a FIDO device over USB, and to verify attestation and \ | ||
| 4 | assertion signatures." | ||
| 5 | HOMEPAGE = "https://developers.yubico.com/libfido2" | ||
| 6 | LICENSE = "BSD-2-Clause" | ||
| 7 | SECTION = "libs/network" | ||
| 8 | DEPENDS = "libcbor openssl zlib udev" | ||
| 9 | |||
| 10 | LIC_FILES_CHKSUM = "file://LICENSE;md5=5f14cb32bdf2b87063e0a2d20c4178d0" | ||
| 11 | |||
| 12 | SRC_URI = "https://developers.yubico.com/${BPN}/Releases/${BPN}-${PV}.tar.gz" | ||
| 13 | SRC_URI[sha256sum] = "3601792e320032d428002c4cce8499a4c7b803319051a25a0c9f1f138ffee45a" | ||
| 14 | |||
| 15 | inherit cmake pkgconfig manpages | ||
| 16 | |||
| 17 | PACKAGECONFIG[manpages] = "-DBUILD_MANPAGES:BOOL=ON,-DBUILD_MANPAGES:BOOL=OFF" | ||
| 18 | |||
| 19 | EXTRA_OECMAKE = "-DUDEV_RULES_DIR=${nonarch_base_libdir}/udev/rules.d -DBUILD_EXAMPLES:BOOL=OFF" | ||
| 20 | |||
| 21 | PACKAGE_BEFORE_PN = "${PN}-tools" | ||
| 22 | |||
| 23 | FILES:${PN}-tools = "${bindir}/fido2-*" | ||
| 24 | |||
| 25 | BBCLASSEXTEND = "native nativesdk" | ||
