2015-06-10 16:12:44 +00:00
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=libinput
|
2022-09-07 18:33:30 +00:00
|
|
|
PKG_VERSION:=1.19.4
|
treewide: remove AUTORELEASE
Automatically compute and substitute current values for all
$(AUTORELEASE) instances as this feature is deprecated and shouldn't be
used.
The following temporary change was made to the core:
diff --git a/rules.mk b/rules.mk
index 57d7995d4fa8..f16367de87a8 100644
--- a/rules.mk
+++ b/rules.mk
@@ -429,7 +429,7 @@ endef
abi_version_str = $(subst -,,$(subst _,,$(subst .,,$(1))))
COMMITCOUNT = $(if $(DUMP),0,$(call commitcount))
-AUTORELEASE = $(if $(DUMP),0,$(call commitcount,1))
+AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile))
all:
FORCE: ;
And this command used to fix affected packages:
for i in $(cd feeds/packages; git grep -l PKG_RELEASE:=.*AUTORELEASE | \
sed 's^.*/\([^/]*\)/Makefile^\1^';);
do
make package/$i/download
done
Signed-off-by: Paul Fertser <fercerpav@gmail.com>
2023-04-21 16:32:27 +00:00
|
|
|
PKG_RELEASE:=1
|
2015-06-10 16:12:44 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
2020-09-02 23:37:07 +00:00
|
|
|
PKG_SOURCE_URL:=http://www.freedesktop.org/software/libinput
|
2022-09-07 18:33:30 +00:00
|
|
|
PKG_HASH:=ff33a570b5a936c81e6c08389a8581c2665311d026ce3d225c88d09c49f9b440
|
2015-06-10 16:12:44 +00:00
|
|
|
|
2020-04-18 08:34:48 +00:00
|
|
|
PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
|
2015-06-10 16:12:44 +00:00
|
|
|
PKG_LICENSE:=MIT
|
|
|
|
PKG_LICENSE_FILES:=COPYING
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2021-09-07 22:24:45 +00:00
|
|
|
include $(INCLUDE_DIR)/meson.mk
|
2016-03-09 08:30:41 +00:00
|
|
|
|
2015-06-10 16:12:44 +00:00
|
|
|
define Package/libinput
|
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
|
|
|
TITLE:=a library to handle input devices
|
|
|
|
URL:=http://freedesktop.org/wiki/Software/libinput/
|
2020-10-19 22:36:08 +00:00
|
|
|
DEPENDS:=+libevdev +mtdev +libudev
|
2015-06-10 16:12:44 +00:00
|
|
|
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
|
|
|
|
|
2020-04-18 08:34:48 +00:00
|
|
|
MESON_ARGS += \
|
|
|
|
-Depoll-dir=no \
|
|
|
|
-Dlibwacom=false \
|
|
|
|
-Ddebug-gui=false \
|
|
|
|
-Dtests=false \
|
|
|
|
-Dinstall-tests=false \
|
|
|
|
-Ddocumentation=false \
|
|
|
|
-Dcoverity=false \
|
|
|
|
-Dzshcompletiondir=no
|
|
|
|
|
2015-06-10 16:12:44 +00:00
|
|
|
define Build/InstallDev
|
|
|
|
$(INSTALL_DIR) $(1)/usr/include
|
2020-09-02 23:37:07 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/libinput.h $(1)/usr/include/
|
2015-06-10 16:12:44 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2020-09-02 23:37:07 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libinput.so* $(1)/usr/lib/
|
2015-06-10 16:12:44 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
2020-09-02 23:37:07 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libinput.pc $(1)/usr/lib/pkgconfig/
|
2015-06-10 16:12:44 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libinput/install
|
2016-01-14 00:11:17 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2020-09-02 23:37:07 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/{udev,libinput.so.*} $(1)/usr/lib
|
2021-08-21 17:37:34 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/libexec/libinput
|
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/libexec/libinput/* $(1)/usr/libexec/libinput
|
2016-01-14 00:11:17 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
2021-08-21 17:37:34 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/libinput $(1)/usr/bin
|
|
|
|
$(INSTALL_DIR) $(1)/usr/share/libinput
|
|
|
|
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/share/libinput/* $(1)/usr/share/libinput
|
2015-06-10 16:12:44 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,libinput))
|