- # This is free software, licensed under the GNU General Public License v2.
- # See /LICENSE for more information.
- #
-
- include $(TOPDIR)/rules.mk
-
- PKG_NAME:=libinput
- PKG_VERSION:=1.16.4
- PKG_RELEASE:=1
-
- PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
- PKG_SOURCE_URL:=http://www.freedesktop.org/software/libinput
- PKG_HASH:=65923a06d5a8970e4a999c4668797b9b689614b62b1d44432ab1c87b65e39e29
-
- PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
- PKG_LICENSE:=MIT
- PKG_LICENSE_FILES:=COPYING
-
- PKG_INSTALL:=1
- PKG_BUILD_DEPENDS:=meson/host
-
- include $(INCLUDE_DIR)/package.mk
- include ../../devel/meson/meson.mk
-
- define Package/libinput
- SECTION:=libs
- CATEGORY:=Libraries
- TITLE:=a library to handle input devices
- URL:=http://freedesktop.org/wiki/Software/libinput/
- DEPENDS:=+libevdev +mtdev +libudev
- endef
-
- define Package/libinput/description
- libinput is a library to handle input devices in Wayland compositors
- and to provide a generic X.Org input driver. It provides device
- detection, device handling, input device event processing and
- abstraction so minimize the amount of custom input code compositors
- need to provide the common set of functionality that users expect.
- endef
-
- MESON_ARGS += \
- -Depoll-dir=no \
- -Dlibwacom=false \
- -Ddebug-gui=false \
- -Dtests=false \
- -Dinstall-tests=false \
- -Ddocumentation=false \
- -Dcoverity=false \
- -Dzshcompletiondir=no
-
- define Build/InstallDev
- $(INSTALL_DIR) $(1)/usr/include
- $(CP) $(PKG_INSTALL_DIR)/usr/include/libinput.h $(1)/usr/include/
- $(INSTALL_DIR) $(1)/usr/lib
- $(CP) $(PKG_INSTALL_DIR)/usr/lib/libinput.so* $(1)/usr/lib/
- $(INSTALL_DIR) $(1)/usr/lib/pkgconfig
- $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libinput.pc $(1)/usr/lib/pkgconfig/
- endef
-
- define Package/libinput/install
- $(INSTALL_DIR) $(1)/usr/lib
- $(CP) $(PKG_INSTALL_DIR)/usr/lib/{udev,libinput.so.*} $(1)/usr/lib
- $(INSTALL_DIR) $(1)/usr/bin
- $(CP) $(PKG_INSTALL_DIR)/usr/bin/libinput $(1)/usr/bin
- endef
-
- $(eval $(call BuildPackage,libinput))
|