diff options
Diffstat (limited to 'meta-oe/recipes-support/hwdata/hwdata_0.388.bb')
-rw-r--r-- | meta-oe/recipes-support/hwdata/hwdata_0.388.bb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/hwdata/hwdata_0.388.bb b/meta-oe/recipes-support/hwdata/hwdata_0.388.bb new file mode 100644 index 000000000..63fcfb22b --- /dev/null +++ b/meta-oe/recipes-support/hwdata/hwdata_0.388.bb | |||
@@ -0,0 +1,26 @@ | |||
1 | DESCRIPTION = "Hardware identification and configuration data" | ||
2 | HOMEPAGE = "https://github.com/vcrhonek/hwdata" | ||
3 | SECTION = "System/Base" | ||
4 | |||
5 | LICENSE = "GPL-2.0-or-later | XFree86-1.0" | ||
6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=1556547711e8246992b999edd9445a57" | ||
7 | |||
8 | SRCREV = "f25185c1814901bf85383693e0dd73bf1d8fe1a1" | ||
9 | SRC_URI = "git://github.com/vcrhonek/${BPN}.git;branch=master;protocol=https" | ||
10 | |||
11 | S = "${WORKDIR}/git" | ||
12 | |||
13 | inherit allarch | ||
14 | |||
15 | do_configure() { | ||
16 | ${S}/configure --datadir=${datadir} --libdir=${libdir} | ||
17 | } | ||
18 | |||
19 | do_compile[noexec] = "1" | ||
20 | |||
21 | do_install() { | ||
22 | oe_runmake install DESTDIR=${D} | ||
23 | } | ||
24 | |||
25 | FILES:${PN} = "${libdir}/* \ | ||
26 | ${datadir}/* " | ||