mirror of
https://github.com/home-assistant/operating-system.git
synced 2025-11-24 18:16:10 +00:00
* Rebase patches to Buildroot 2021.02-rc3 * Update Buildroot to 2021.02-rc3 * Declare Kernel headers to be Linux version 5.10 (since they are, and new Buildroot knows about 5.10)
23 lines
580 B
Makefile
23 lines
580 B
Makefile
################################################################################
|
|
#
|
|
# libevdev
|
|
#
|
|
################################################################################
|
|
|
|
LIBEVDEV_VERSION = 1.11.0
|
|
LIBEVDEV_SITE = http://www.freedesktop.org/software/libevdev
|
|
LIBEVDEV_SOURCE = libevdev-$(LIBEVDEV_VERSION).tar.xz
|
|
LIBEVDEV_LICENSE = MIT
|
|
LIBEVDEV_LICENSE_FILES = COPYING
|
|
|
|
LIBEVDEV_DEPENDENCIES = $(BR2_PYTHON3_HOST_DEPENDENCY)
|
|
|
|
LIBEVDEV_INSTALL_STAGING = YES
|
|
|
|
LIBEVDEV_CONF_OPTS += \
|
|
-Dtests=disabled \
|
|
-Ddocumentation=disabled \
|
|
-Dcoverity=false
|
|
|
|
$(eval $(meson-package))
|