xorg/libinput/Pkgfile

27 lines
675 B
Plaintext
Raw Normal View History

2019-08-26 10:21:13 +02:00
# Description: library that handles input devices for display servers
# URL: http://wayland.freedesktop.org/libinput/doc/latest/index.html
# Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
2019-08-26 10:21:13 +02:00
# Depends on: eudev meson mtdev ninja xorg-libevdev
2015-12-03 18:06:25 +01:00
name=libinput
2020-03-07 18:08:45 +01:00
version=1.15.3
2017-07-21 09:19:55 +02:00
release=1
2020-02-07 13:30:16 +01:00
source=(https://www.freedesktop.org/software/$name/$name-$version.tar.xz)
2015-12-03 18:06:25 +01:00
build() {
cd $name-$version
meson build \
--prefix /usr \
--libexecdir /usr/lib \
--buildtype release \
-Ddebug-gui=false \
-Ddocumentation=false \
-Dtests=false \
-Dlibwacom=false \
2019-08-26 10:21:13 +02:00
-Dudev-dir=/lib/udev \
2020-03-07 18:08:45 +01:00
-Dzshcompletiondir=no
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
}