generic-poky/meta/packages/pointercal/pointercal_0.0.bb
Ross Burton 2100cecfd0 Add pointercal files for qemuarm and qemux86
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3180 311d38ba-8fff-0310-9ca6-ca027cbcb966
2007-11-15 14:08:13 +00:00

19 lines
375 B
BlitzBasic

DESCRIPTION = "Touchscreen calibration data"
SECTION = "base"
PR = "r6"
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}"