Files
ports/main/libinput/spkgbuild
2023-08-25 07:24:31 +00:00

22 lines
579 B
Plaintext
Executable File

# description : library that handles input devices for display servers and other applications that need to directly deal with input devices
# depends : eudev libevdev mtdev meson
name=libinput
version=1.24.0
release=1
source="https://gitlab.freedesktop.org/libinput/libinput/-/archive/$version/libinput-$version.tar.gz"
build() {
cd libinput-$version
venom-meson \
-Dudev-dir=/lib/udev \
-Ddebug-gui=false \
-Db_ndebug=false \
-Dtests=false \
-Ddocumentation=false \
-Dlibwacom=false \
build
meson compile -C build
DESTDIR=$PKG meson install --no-rebuild -C build
}