From ed3d5b19ae7dfb3f622e74aecf16d13c585fdbd5 Mon Sep 17 00:00:00 2001 From: Willy Tu Date: Tue, 16 May 2023 16:24:37 -0700 Subject: [PATCH] hoth: Add recipe for libhoth libhoth is the google specific usb protocol implementation which is required by hothd. --- meta-oe/recipes-extended/hoth/libhoth_git.bb | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 meta-oe/recipes-extended/hoth/libhoth_git.bb diff --git a/meta-oe/recipes-extended/hoth/libhoth_git.bb b/meta-oe/recipes-extended/hoth/libhoth_git.bb new file mode 100644 index 00000000000..3b61ff97ced --- /dev/null +++ b/meta-oe/recipes-extended/hoth/libhoth_git.bb @@ -0,0 +1,16 @@ + +SUMMARY = "Google Hoth USB library" +DESCRIPTION = "A library implements Google USB protocol to communication with Hoth device" +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" +SRC_URI = "git://github.com/google/libhoth;protocol=https;branch=main" + +SRCREV = "769296220dc88df33f4726aa11e39e049257b3c4" + +PV = "1.0+git${SRCPV}" + +S = "${WORKDIR}/git" + +inherit pkgconfig meson + +DEPENDS += "libusb1"