21 lines
591 B
Plaintext
21 lines
591 B
Plaintext
# Description: Library for display servers and other applications that need to deal with input devices
|
|
# URL:http://www.freedesktop.org/wiki/Software/libinput/
|
|
# Packager: alihan-ozturk28@hotmail.com
|
|
# Depends on: libevdev mtdev libwacom
|
|
|
|
name=libinput
|
|
version=1.4.0
|
|
release=1
|
|
|
|
source=(http://freedesktop.org/software/$name/$name-$version.tar.xz )
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr --disable-static \
|
|
--with-udev-dir=/lib/udev
|
|
make
|
|
make DESTDIR=$PKG install
|
|
install -v -dm755 $PKG/usr/share/doc/libinput-$version
|
|
cp -rv doc/html/* $PKG/usr/share/doc/libinput-$version
|
|
}
|