mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 10:20:12 +00:00
22 lines
579 B
Plaintext
Executable File
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
|
|
}
|