Merge pull request #4324 from lrusak/libinput

Allow building with xf86-input-libinput when specified
This commit is contained in:
Stephan Raue 2015-09-16 11:21:22 +02:00
commit 475db26c33
2 changed files with 11 additions and 5 deletions

View File

@ -47,8 +47,14 @@ if [ -n "$WINDOWMANAGER" -a "$WINDOWMANAGER" != "none" ]; then
fi
get_graphicdrivers
# Drivers
if [ -n $LIBINPUT ]; then
PKG_DEPENDS_TARGET="$PKG_DEPENDS_TARGET xf86-input-libinput"
else
PKG_DEPENDS_TARGET="$PKG_DEPENDS_TARGET xf86-input-evdev"
for drv in $XORG_DRIVERS; do
fi
for drv in $XORG_DRIVERS; do
PKG_DEPENDS_TARGET="$PKG_DEPENDS_TARGET xf86-video-$drv"
done
done

View File

@ -17,7 +17,7 @@
################################################################################
PKG_NAME="libinput"
PKG_VERSION="0.21.0"
PKG_VERSION="1.0.1"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="GPL"