[Mod] First commit

This commit is contained in:
2022-10-31 22:18:58 +08:00
commit 1c8a3d9709
13090 changed files with 526733 additions and 0 deletions

9
package/evtest/Config.in Normal file
View File

@ -0,0 +1,9 @@
config BR2_PACKAGE_EVTEST
bool "evtest"
help
evtest displays information on the input device specified on
the command line, including all the events supported by the
device. It then monitors the device and displays all the
events layer events generated.
https://gitlab.freedesktop.org/libevdev/evtest

View File

@ -0,0 +1,5 @@
# locally computed
sha256 06dfe6b9760b78f3f73aca2120cbcb79339b33e59d5c79a49b4bd5d34844b054 evtest-evtest-1.35.tar.gz
# License files
sha256 ab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c6 COPYING

20
package/evtest/evtest.mk Normal file
View File

@ -0,0 +1,20 @@
################################################################################
#
# evtest
#
################################################################################
EVTEST_VERSION = 1.35
EVTEST_SOURCE = evtest-evtest-$(EVTEST_VERSION).tar.gz
EVTEST_SITE = https://gitlab.freedesktop.org/libevdev/evtest/-/archive/evtest-$(EVTEST_VERSION)
EVTEST_LICENSE = GPL-2.0+
EVTEST_LICENSE_FILES = COPYING
# needed because source package contains no generated files
EVTEST_AUTORECONF = YES
# 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
EVTEST_CONF_ENV = ac_cv_path_ASCIIDOC=""
$(eval $(autotools-package))