mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 14:16:31 +00:00
package/libinput: new package
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
5cd1c4feb5
commit
76dff6c63d
@ -625,6 +625,7 @@ source "package/libcec/Config.in"
|
|||||||
source "package/libfreefare/Config.in"
|
source "package/libfreefare/Config.in"
|
||||||
source "package/libftdi/Config.in"
|
source "package/libftdi/Config.in"
|
||||||
source "package/libhid/Config.in"
|
source "package/libhid/Config.in"
|
||||||
|
source "package/libinput/Config.in"
|
||||||
source "package/libiqrf/Config.in"
|
source "package/libiqrf/Config.in"
|
||||||
source "package/libllcp/Config.in"
|
source "package/libllcp/Config.in"
|
||||||
source "package/libmbim/Config.in"
|
source "package/libmbim/Config.in"
|
||||||
|
17
package/libinput/Config.in
Normal file
17
package/libinput/Config.in
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
config BR2_PACKAGE_LIBINPUT
|
||||||
|
bool "libinput"
|
||||||
|
depends on BR2_PACKAGE_HAS_UDEV
|
||||||
|
select BR2_PACKAGE_LIBEVDEV
|
||||||
|
select BR2_PACKAGE_MTDEV
|
||||||
|
help
|
||||||
|
libinput is a library to handle input devices in Wayland
|
||||||
|
compositors and to provide a generic X.Org input driver.
|
||||||
|
It provides device detection, device handling, input device
|
||||||
|
event processing and abstraction so minimize the amount of
|
||||||
|
custom input code compositors need to provide the common
|
||||||
|
set of functionality that users expect.
|
||||||
|
|
||||||
|
http://freedesktop.org/wiki/Software/libinput/
|
||||||
|
|
||||||
|
comment "libinput needs udev /dev management"
|
||||||
|
depends on !BR2_PACKAGE_HAS_UDEV
|
19
package/libinput/libinput.mk
Normal file
19
package/libinput/libinput.mk
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
################################################################################
|
||||||
|
#
|
||||||
|
# libinput
|
||||||
|
#
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
LIBINPUT_VERSION = 0.2.0
|
||||||
|
LIBINPUT_SOURCE = libinput-$(LIBINPUT_VERSION).tar.xz
|
||||||
|
LIBINPUT_SITE = http://www.freedesktop.org/software/libinput
|
||||||
|
LIBINPUT_LICENSE = MIT
|
||||||
|
LIBINPUT_LICENSE_FILES = COPYING
|
||||||
|
|
||||||
|
LIBINPUT_DEPENDENCIES = host-pkgconf libevdev mtdev udev
|
||||||
|
LIBINPUT_INSTALL_STAGING = YES
|
||||||
|
|
||||||
|
# Tests need fork, so just disable them everywhere.
|
||||||
|
LIBINPUT_CONF_OPT = --disable-tests
|
||||||
|
|
||||||
|
$(eval $(autotools-package))
|
Loading…
x
Reference in New Issue
Block a user