# -*-makefile-*- # # Copyright (C) 2014 by Michael Olbrich # # See CREDITS for details about who has contributed to this project. # # For further information about the PTXdist project and license conditions # see the README file. # # # We provide this package # PACKAGES-$(PTXCONF_LIBINPUT) += libinput # # Paths and names # LIBINPUT_VERSION := 1.9.4 LIBINPUT_MD5 := 8b43d07d1698fb207a0492fc67554d4f LIBINPUT := libinput-$(LIBINPUT_VERSION) LIBINPUT_SUFFIX := tar.xz LIBINPUT_URL := http://www.freedesktop.org/software/libinput/$(LIBINPUT).$(LIBINPUT_SUFFIX) LIBINPUT_SOURCE := $(SRCDIR)/$(LIBINPUT).$(LIBINPUT_SUFFIX) LIBINPUT_DIR := $(BUILDDIR)/$(LIBINPUT) LIBINPUT_LICENSE := MIT # ---------------------------------------------------------------------------- # Prepare # ---------------------------------------------------------------------------- LIBINPUT_CONF_TOOL := meson LIBINPUT_CONF_OPT := \ $(CROSS_MESON_USR) \ -Dudev-dir=/usr/lib/udev \ -Dlibwacom=false \ -Ddebug-gui=false \ -Dtests=false \ -Ddocumentation=false # ---------------------------------------------------------------------------- # Target-Install # ---------------------------------------------------------------------------- $(STATEDIR)/libinput.targetinstall: @$(call targetinfo) @$(call install_init, libinput) @$(call install_fixup, libinput,PRIORITY,optional) @$(call install_fixup, libinput,SECTION,base) @$(call install_fixup, libinput,AUTHOR,"Michael Olbrich ") @$(call install_fixup, libinput,DESCRIPTION,missing) @$(call install_lib, libinput, 0, 0, 0644, libinput) @$(call install_finish, libinput) @$(call touch) # vim: syntax=make