2015-12-03 18:06:25 +01:00
|
|
|
# Description: A library that handles input devices for display servers
|
2017-11-02 19:50:21 +01:00
|
|
|
# URL: http://wayland.freedesktop.org/libinput/doc/latest/index.html
|
|
|
|
# Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
|
2019-08-25 23:41:05 +10:00
|
|
|
# Depends on: eudev meson mtdev ninja xorg-libevdev
|
2015-12-03 18:06:25 +01:00
|
|
|
|
|
|
|
name=libinput
|
2019-08-09 15:54:27 +02:00
|
|
|
version=1.14.0
|
2017-07-21 09:19:55 +02:00
|
|
|
release=1
|
2015-12-03 18:06:25 +01:00
|
|
|
source=(http://www.freedesktop.org/software/$name/$name-$version.tar.xz)
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
2016-06-17 19:16:48 +10:00
|
|
|
|
2017-11-02 19:50:21 +01:00
|
|
|
meson build \
|
|
|
|
--prefix /usr \
|
|
|
|
--libexecdir /usr/lib \
|
|
|
|
--buildtype release \
|
|
|
|
-Ddebug-gui=false \
|
|
|
|
-Ddocumentation=false \
|
|
|
|
-Dtests=false \
|
|
|
|
-Dlibwacom=false \
|
|
|
|
-Dudev-dir=/lib/udev
|
2016-06-17 19:16:48 +10:00
|
|
|
|
2017-11-15 09:46:42 +01:00
|
|
|
DESTDIR=$PKG ninja -C build -j ${JOBS:-1} install
|
2015-12-03 18:06:25 +01:00
|
|
|
}
|