32 lines
882 B
Plaintext
32 lines
882 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 mtdev xorg-libevdev
|
|
# Optional: wayland-protocols
|
|
|
|
name=libinput
|
|
version=1.19.1
|
|
release=1
|
|
source=(https://www.freedesktop.org/software/$name/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
prt-get isinst zsh && \
|
|
PKGMK_LIBINPUT+=' -D zshcompletiondir=/usr/share/zsh/site-functions' || \
|
|
PKGMK_LIBINPUT+=' -D zshcompletiondir=no'
|
|
|
|
meson setup build $name-$version $PKGMK_LIBINPUT \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib \
|
|
--buildtype=plain \
|
|
--wrap-mode nodownload \
|
|
-D b_pie=true \
|
|
-D udev-dir=/lib/udev \
|
|
-D debug-gui=false \
|
|
-D documentation=false \
|
|
-D tests=false \
|
|
-D libwacom=false
|
|
|
|
meson compile -C build -j ${JOBS:-1}
|
|
DESTDIR=$PKG meson install -C build
|
|
}
|