mirror of
https://git.yoctoproject.org/poky
synced 2026-04-30 21:32:13 +02:00
The XFree86-1.0 (non-SPDX) license and the X11 (SPDX) license are the same. Reference the X11 license in hwdata. License-Update: use SPDX identifier (From OE-Core rev: 891dfdf294e4ac88239dba70d6a5958cc42cbc92) Signed-off-by: Bastian Germann <bage@debian.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
31 lines
789 B
BlitzBasic
31 lines
789 B
BlitzBasic
SUMMARY = "Hardware identification and configuration data"
|
|
DESCRIPTION = "hwdata contains various hardware identification and \
|
|
configuration data, such as the pci.ids and usb.ids databases."
|
|
HOMEPAGE = "https://github.com/vcrhonek/hwdata"
|
|
SECTION = "System/Base"
|
|
|
|
LICENSE = "GPL-2.0-or-later | X11"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=1556547711e8246992b999edd9445a57"
|
|
|
|
SRC_URI = "git://github.com/vcrhonek/${BPN}.git;branch=master;protocol=https"
|
|
SRCREV = "0955087d49d085d1ef2207d6bef0c07b02844b78"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit allarch
|
|
|
|
do_configure() {
|
|
${S}/configure --datadir=${datadir} --libdir=${libdir}
|
|
}
|
|
|
|
do_compile[noexec] = "1"
|
|
|
|
do_install() {
|
|
oe_runmake install DESTDIR=${D}
|
|
}
|
|
|
|
FILES:${PN} = "${libdir}/* \
|
|
${datadir}/* "
|
|
|
|
BBCLASSEXTEND += "native"
|