1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-09 15:50:16 +00:00
Files
2009-11-26 09:16:19 +00:00

18 lines
375 B
BlitzBasic

DESCRIPTION = "Touchscreen calibration data"
SECTION = "base"
PR = "r10"
SRC_URI = "file://pointercal"
S = "${WORKDIR}"
do_install() {
# Only install file if it has a contents
if [ -s ${S}/pointercal ]; then
install -d ${D}${sysconfdir}/
install -m 0644 ${S}/pointercal ${D}${sysconfdir}/
fi
}
ALLOW_EMPTY_${PN} = "1"
PACKAGE_ARCH = "${MACHINE_ARCH}"