blob: 130f89333ecac8b5d9b0ed1ac94cf47ed48c0115 (
plain)
1 # Description: X driver based on libinput
2 # URL: http://xorg.freedesktop.org
3 # Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
4 # Depends on: libinput xorg-server
5
6 name=xorg-xf86-input-libinput
7 version=1.2.1
8 release=1
9 source=(https://www.x.org/releases/individual/driver/xf86-input-libinput-$version.tar.xz)
10
11 build() {
12 cd xf86-input-libinput-$version
13 ./configure --prefix=/usr
14 make
15 make DESTDIR=$PKG install
16 }
|