New package: xf86-input-libinput-0.6.0.
This commit is contained in:
parent
33c38c18a9
commit
b5616d854e
3 changed files with 61 additions and 0 deletions
1
srcpkgs/xf86-input-libinput-devel
Symbolic link
1
srcpkgs/xf86-input-libinput-devel
Symbolic link
|
@ -0,0 +1 @@
|
|||
xf86-input-libinput
|
30
srcpkgs/xf86-input-libinput/files/90-libinput.conf
Normal file
30
srcpkgs/xf86-input-libinput/files/90-libinput.conf
Normal file
|
@ -0,0 +1,30 @@
|
|||
# Match on all types of devices but tablet devices and joysticks
|
||||
|
||||
Section "InputClass"
|
||||
Identifier "libinput pointer catchall"
|
||||
MatchIsPointer "on"
|
||||
MatchDevicePath "/dev/input/event*"
|
||||
Driver "libinput"
|
||||
EndSection
|
||||
|
||||
Section "InputClass"
|
||||
Identifier "libinput keyboard catchall"
|
||||
MatchIsKeyboard "on"
|
||||
MatchDevicePath "/dev/input/event*"
|
||||
Driver "libinput"
|
||||
EndSection
|
||||
|
||||
Section "InputClass"
|
||||
Identifier "libinput touchpad catchall"
|
||||
MatchIsTouchpad "on"
|
||||
MatchDevicePath "/dev/input/event*"
|
||||
Driver "libinput"
|
||||
EndSection
|
||||
|
||||
Section "InputClass"
|
||||
Identifier "libinput touchscreen catchall"
|
||||
MatchIsTouchscreen "on"
|
||||
MatchDevicePath "/dev/input/event*"
|
||||
Driver "libinput"
|
||||
EndSection
|
||||
|
30
srcpkgs/xf86-input-libinput/template
Normal file
30
srcpkgs/xf86-input-libinput/template
Normal file
|
@ -0,0 +1,30 @@
|
|||
# Template build file for 'xf86-input-libinput'.
|
||||
pkgname=xf86-input-libinput
|
||||
version=0.6.0
|
||||
revision=1
|
||||
lib32disabled=yes
|
||||
build_style=gnu-configure
|
||||
hostmakedepends="pkg-config"
|
||||
makedepends="xorg-server-devel>=1.17<1.18 libinput-devel>=0.10"
|
||||
depends="virtual?xserver-abi-input-21_1"
|
||||
short_desc="Generic input driver for the X.Org server based on libinput"
|
||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||
homepage="http://xorg.freedesktop.org/"
|
||||
license="MIT"
|
||||
distfiles="${XORG_SITE}/driver/$pkgname-$version.tar.bz2"
|
||||
checksum=2f29be1ed7f9b9c597b6f5c6ef24c37a244a0ba87ccd1c2586ffa4d08452ad79
|
||||
|
||||
post_install() {
|
||||
vinstall ${FILESDIR}/90-libinput 644 usr/share/X11/xorg.conf.d
|
||||
vlicense COPYING
|
||||
}
|
||||
|
||||
xf86-input-libinput-devel_package() {
|
||||
lib32disabled=yes
|
||||
depends="${makedepends}"
|
||||
short_desc+=" - development files"
|
||||
pkg_install() {
|
||||
vmove usr/include
|
||||
vmove usr/lib/pkgconfig
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue