update buildroot to 2017.02.11
This commit is contained in:
7
bsp/buildroot-2017.02.11/package/evemu/Config.in
Normal file
7
bsp/buildroot-2017.02.11/package/evemu/Config.in
Normal file
@@ -0,0 +1,7 @@
|
||||
config BR2_PACKAGE_EVEMU
|
||||
bool "evemu"
|
||||
select BR2_PACKAGE_LIBEVDEV
|
||||
help
|
||||
evemu records and replays device descriptions and events
|
||||
|
||||
http://www.freedesktop.org/wiki/Evemu/
|
||||
2
bsp/buildroot-2017.02.11/package/evemu/evemu.hash
Normal file
2
bsp/buildroot-2017.02.11/package/evemu/evemu.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# Hash from https://lists.freedesktop.org/archives/input-tools/2016-September/001330.html
|
||||
sha256 541cc138f0215b7d0cd4ad5e6bb1402518ffc5e31294c36bb67b4ff1791bb27f evemu-2.5.0.tar.xz
|
||||
32
bsp/buildroot-2017.02.11/package/evemu/evemu.mk
Normal file
32
bsp/buildroot-2017.02.11/package/evemu/evemu.mk
Normal file
@@ -0,0 +1,32 @@
|
||||
################################################################################
|
||||
#
|
||||
# evemu
|
||||
#
|
||||
################################################################################
|
||||
|
||||
EVEMU_VERSION = 2.5.0
|
||||
EVEMU_SITE = http://www.freedesktop.org/software/evemu
|
||||
EVEMU_SOURCE = evemu-$(EVEMU_VERSION).tar.xz
|
||||
EVEMU_LICENSE = LGPLv3 (library), GPLv3 (tools)
|
||||
EVEMU_LICENSE_FILES = COPYING
|
||||
|
||||
# asciidoc used to generate manpages, which we don't need, and if it's
|
||||
# present on the build host, it ends getting called with our host-python
|
||||
# which doesn't have all the needed modules enabled, breaking the build
|
||||
EVEMU_CONF_ENV = ac_cv_path_ASCIIDOC=""
|
||||
|
||||
# disable tests generation because of C++ dependency
|
||||
EVEMU_CONF_OPTS += --disable-tests
|
||||
|
||||
# Uses PKG_CHECK_MODULES() in configure.ac
|
||||
EVEMU_DEPENDENCIES = host-pkgconf libevdev
|
||||
|
||||
# Check for target python
|
||||
ifeq ($(BR2_PACKAGE_PYTHON)$(BR2_PACKAGE_PYTHON3),y)
|
||||
EVEMU_CONF_OPTS += --enable-python-bindings
|
||||
EVEMU_DEPENDENCIES += $(if $(BR2_PACKAGE_PYTHON3),python3,python)
|
||||
else
|
||||
EVEMU_CONF_OPTS += --disable-python-bindings
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user