mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-02 05:33:57 -09:00
Switched build system to hatch:
d354240476
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
21 lines
759 B
Makefile
21 lines
759 B
Makefile
################################################################################
|
|
#
|
|
# python-libevdev
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_LIBEVDEV_VERSION = 0.13.1
|
|
PYTHON_LIBEVDEV_SOURCE = libevdev-$(PYTHON_LIBEVDEV_VERSION).tar.gz
|
|
PYTHON_LIBEVDEV_SITE = https://files.pythonhosted.org/packages/86/ff/4f8ab38330965168be742b772bcd151a7a052ea17b2481c43a607875d4ed
|
|
PYTHON_LIBEVDEV_SETUP_TYPE = hatch
|
|
PYTHON_LIBEVDEV_LICENSE = MIT
|
|
PYTHON_LIBEVDEV_LICENSE_FILES = COPYING
|
|
|
|
# Requires a kernel built with user level driver support (uinput).
|
|
define PYTHON_LIBEVDEV_LINUX_CONFIG_FIXUPS
|
|
$(call KCONFIG_ENABLE_OPT,CONFIG_INPUT_MISC)
|
|
$(call KCONFIG_ENABLE_OPT,CONFIG_INPUT_UINPUT)
|
|
endef
|
|
|
|
$(eval $(python-package))
|