17 lines
434 B
Plaintext
17 lines
434 B
Plaintext
# Description: A 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
|
|
# Depends on:
|
|
|
|
name=libinput
|
|
version=1.2.0
|
|
release=1
|
|
source=(http://www.freedesktop.org/software/$name/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr --disable-libwacom
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|