M7350/oe-core/meta-msm/recipes/libhardware/libhardware_git.bb
2024-09-09 08:52:07 +00:00

24 lines
736 B
BlitzBasic

DESCRIPTION = "hardware libhardware headers"
HOMEPAGE = "http://codeaurora.org/"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/\
${LICENSE};md5=89aea4e17d99a7cacdbeed46a0096b10"
PR = "r4"
SRC_URI = "file://${WORKSPACE}/hardware/libhardware/"
SRC_URI += "file://autotools.patch"
S = "${WORKDIR}/${PN}"
DEPENDS = "system-core"
inherit autotools
do_install_append () {
install -d ${D}${includedir}
install -m 0644 ${S}/include/hardware/gps.h -D ${D}${includedir}/hardware/gps.h
install -m 0644 ${S}/include/hardware/hardware.h -D ${D}${includedir}/hardware/hardware.h
install -m 0644 ${S}/include/hardware/gralloc.h -D ${D}${includedir}/hardware/gralloc.h
}