2016-02-24 01:27:23 +01:00
|
|
|
# Description: Library for display servers and other applications that need to deal with input devices
|
|
|
|
# URL:http://www.freedesktop.org/wiki/Software/libinput/
|
2016-07-26 01:11:34 +02:00
|
|
|
# Packager: alihan-ozturk28@hotmail.com
|
|
|
|
# Depends on: libevdev mtdev libwacom
|
2016-02-24 01:27:23 +01:00
|
|
|
|
|
|
|
name=libinput
|
2016-07-26 01:11:34 +02:00
|
|
|
version=1.4.0
|
2016-02-24 01:27:23 +01:00
|
|
|
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
|
|
|
|
}
|