summaryrefslogtreecommitdiffstats
path: root/x11-xf86-input-libinput
diff options
context:
space:
mode:
Diffstat (limited to 'x11-xf86-input-libinput')
-rw-r--r--x11-xf86-input-libinput/MAKEPKG20
1 files changed, 20 insertions, 0 deletions
diff --git a/x11-xf86-input-libinput/MAKEPKG b/x11-xf86-input-libinput/MAKEPKG
new file mode 100644
index 0000000..67983de
--- /dev/null
+++ b/x11-xf86-input-libinput/MAKEPKG
@@ -0,0 +1,20 @@
1#!/bin/mkpkg
2# *** OpenTUX ***
3# description: X.org libinput input driver
4# url: https://xorg.freedesktop.org
5
6name=x11-xf86-input-libinput
7version=1.5.0
8release=1
9depends=(libinput x11-server)
10source=(https://www.x.org/releases/individual/driver/xf86-input-libinput-$version.tar.xz)
11
12build() {
13 cd xf86-input-libinput-$version
14
15 ./configure --prefix=/usr
16 make
17 make DESTDIR=$PKG install
18}
19
20# vim: filetype=sh