diff options
author | Markus Volk <f_l_k@t-online.de> | 2023-08-23 14:19:56 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-08-26 17:32:44 -0700 |
commit | c0dff3ec15431a40f40eb520a7fe795352da0920 (patch) | |
tree | 942e8a83b94ae633fd7cfc0fd2cd0af289c2a7ce | |
parent | edda40dd00fdfce3b0f9731b7a6f7e1e840fbc0d (diff) | |
download | meta-openembedded-c0dff3ec15431a40f40eb520a7fe795352da0920.tar.gz |
usbids: add recipe
Linux USB ID Repository (master still in CVS at SourceForge.net)
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/usbids/usbids_2023.01.16.bb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/usbids/usbids_2023.01.16.bb b/meta-oe/recipes-support/usbids/usbids_2023.01.16.bb new file mode 100644 index 0000000000..b0dd72fb25 --- /dev/null +++ b/meta-oe/recipes-support/usbids/usbids_2023.01.16.bb | |||
@@ -0,0 +1,18 @@ | |||
1 | SUMMARY = "usb device database." | ||
2 | HOMEPAGE = "https://github.com/usbids/usbids" | ||
3 | |||
4 | LICENSE = "GPL-3.0-only" | ||
5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=84dcc94da3adb52b53ae4fa38fe49e5d" | ||
6 | |||
7 | SRC_URI = "git://github.com/usbids/usbids.git;branch=master;protocol=https" | ||
8 | |||
9 | SRCREV = "7963233faf69eb9c80ffca8dfc1f31940f75999f" | ||
10 | |||
11 | S = "${WORKDIR}/git" | ||
12 | |||
13 | do_install() { | ||
14 | install -d ${D}${datadir} | ||
15 | install -m0644 ${S}/usb.ids ${D}${datadir} | ||
16 | } | ||
17 | |||
18 | FILES:${PN} = "${datadir}" | ||