27 lines
665 B
Plaintext
27 lines
665 B
Plaintext
# Description: library that handles input devices for display servers
|
|
# URL: https://www.freedesktop.org/wiki/Software/libinput/
|
|
# Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
|
|
# Depends on: eudev meson mtdev ninja xorg-libevdev
|
|
|
|
name=libinput
|
|
version=1.16.2
|
|
release=1
|
|
source=(https://www.freedesktop.org/software/$name/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
meson build \
|
|
--prefix /usr \
|
|
--libexecdir /usr/lib \
|
|
--buildtype release \
|
|
-Ddebug-gui=false \
|
|
-Ddocumentation=false \
|
|
-Dtests=false \
|
|
-Dlibwacom=false \
|
|
-Dudev-dir=/lib/udev \
|
|
-Dzshcompletiondir=no
|
|
|
|
DESTDIR=$PKG ninja -C build -j ${JOBS:-1} install
|
|
}
|