mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-15 16:07:26 +00:00
f026e96295
Signed-off-by: Mario Domenech Goulart <mario@ossystems.com.br> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Eric Bénard <eric@eukrea.com>
32 lines
1.1 KiB
BlitzBasic
32 lines
1.1 KiB
BlitzBasic
DESCRIPTION = "A generic touchscreen calibration program for X.Org"
|
|
HOMEPAGE = "http://www.freedesktop.org/wiki/Software/xinput_calibrator"
|
|
LICENSE = "MIT-X"
|
|
LIC_FILES_CHKSUM = "file://src/calibrator.cpp;endline=22;md5=1bcba08f67cdb56f34021557898e4b5a"
|
|
DEPENDS = "virtual/libx11 libxi"
|
|
|
|
PV = "0.7.5+git${SRCPV}"
|
|
PR = "r1"
|
|
|
|
inherit autotools
|
|
|
|
SRCREV = "c01c5af807cb4b0157b882ab07a893df9a810111"
|
|
SRC_URI = "git://github.com/tias/xinput_calibrator.git;protocol=git"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
# force native X11 ui as we don't have gtk+ in DEPENDS
|
|
EXTRA_OECONF += "--with-gui=x11"
|
|
|
|
do_install_append() {
|
|
install -d ${D}${bindir}
|
|
install -m 0755 scripts/xinput_calibrator_pointercal.sh ${D}${bindir}/xinput_calibrator_once.sh
|
|
|
|
install -d ${D}${sysconfdir}/xdg/autostart
|
|
sed -i -e 's,^Exec=.*,Exec=${bindir}/xinput_calibrator_once.sh,' scripts/xinput_calibrator.desktop
|
|
install -m 0644 scripts/xinput_calibrator.desktop ${D}${sysconfdir}/xdg/autostart
|
|
}
|
|
|
|
FILES_${PN} += "${sysconfdir}/xdg/autostart"
|
|
RDEPENDS_${PN} = "xinput xterm"
|
|
RRECOMMENDS_${PN} = "pointercal-xinput"
|