dab996309e
Added all hashes applied upstream. Renamed configure option -event-gui to -debug-gui after upstream commit https://cgit.freedesktop.org/wayland/libinput/commit/configure.ac?h=1.8-branch&id=a69294251df92e818f695cd2456c8eb860e02522 Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
25 lines
760 B
Makefile
25 lines
760 B
Makefile
################################################################################
|
|
#
|
|
# libinput
|
|
#
|
|
################################################################################
|
|
|
|
LIBINPUT_VERSION = 1.8.2
|
|
LIBINPUT_SOURCE = libinput-$(LIBINPUT_VERSION).tar.xz
|
|
LIBINPUT_SITE = http://www.freedesktop.org/software/libinput
|
|
LIBINPUT_DEPENDENCIES = host-pkgconf libevdev mtdev udev
|
|
LIBINPUT_INSTALL_STAGING = YES
|
|
LIBINPUT_LICENSE = MIT
|
|
LIBINPUT_LICENSE_FILES = COPYING
|
|
# Tests need fork, so just disable them everywhere.
|
|
LIBINPUT_CONF_OPTS = --disable-tests --disable-libwacom
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBGTK3),y)
|
|
LIBINPUT_CONF_OPTS += --enable-debug-gui
|
|
LIBINPUT_DEPENDENCIES += libgtk3
|
|
else
|
|
LIBINPUT_CONF_OPTS += --disable-debug-gui
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|