0af5029453
As the update from 0.0.X to 1.0.0 suggests, this is a major update. The driver uses X11's touch API now, instead of motion with button emulation. Furthermore it supports multitouch when a recent version of tslib is installed. It is not backwards compatible for very old versions of the X server. See https://github.com/merge/xf86-input-tslib/releases for some details. Signed-off-by: Martin Kepplinger <martink@posteo.de> Tested-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
20 lines
707 B
Makefile
20 lines
707 B
Makefile
################################################################################
|
|
#
|
|
# xdriver_xf86-input-tslib
|
|
#
|
|
################################################################################
|
|
|
|
XDRIVER_XF86_INPUT_TSLIB_VERSION = 1.0.0
|
|
XDRIVER_XF86_INPUT_TSLIB_SOURCE = xf86-input-tslib-$(XDRIVER_XF86_INPUT_TSLIB_VERSION).tar.bz2
|
|
XDRIVER_XF86_INPUT_TSLIB_SITE = https://github.com/merge/xf86-input-tslib/releases/download/$(XDRIVER_XF86_INPUT_TSLIB_VERSION)
|
|
XDRIVER_XF86_INPUT_TSLIB_LICENSE = MIT
|
|
XDRIVER_XF86_INPUT_TSLIB_LICENSE_FILES = COPYING
|
|
XDRIVER_XF86_INPUT_TSLIB_DEPENDENCIES = \
|
|
xproto_inputproto \
|
|
xserver_xorg-server \
|
|
xproto_randrproto \
|
|
xproto_xproto \
|
|
tslib
|
|
|
|
$(eval $(autotools-package))
|