The libei package contains a set of libraries for handling emulated inputs. It is primarily aimed at the Wayland stack.
Development versions of BLFS may not build or run some packages properly if LFS or dependencies have been updated since the most recent stable versions of the books.
下载地址(HTTP):https://gitlab.freedesktop.org/libinput/libei/-/archive/1.6.0/libei-1.6.0.tar.bz2
MD5 校验和:08186470213bdba5a4e58d322368f31d
大小:192 KB
预计所需磁盘空间:7.0 MB
预计构建时间:小于 0.1 SBU
libevdev-1.13.6, libxkbcommon-1.13.2, libxml2-2.15.3, munit, and structlog
Install libei by running the following commands:
mkdir build && cd build && meson setup --prefix=/usr --buildtype=release -D tests=disabled && ninja
This package does come with a test suite, but it requires an external dependency. If you have both munit and structlog installed, and you wish to run the test suite, run the following commands:
meson configure -D tests=enabled && ninja test
Now, as the root user:
ninja install
--buildtype=release:
Specify a buildtype suitable for stable releases of the package, as
the default may produce unoptimized binaries.
-D tests=disabled: This
switch avoids a dependency on munit. Remove this switch if
you have munit installed and wish
to run the test suite.