Thanks, applied as bb34c6ad78078e64fdc4d89b1f656638c2617977. Michael
[sent from post-receive hook] On Fri, 13 Feb 2026 11:02:54 +0100, Philipp Zabel <[email protected]> wrote: > https://github.com/kmscon/libtsm/releases/tag/v4.4.1 > > Signed-off-by: Philipp Zabel <[email protected]> > Message-Id: <[email protected]> > [mol: fix menu section] > Signed-off-by: Michael Olbrich <[email protected]> > > diff --git a/rules/libtsm.in b/rules/libtsm.in > new file mode 100644 > index 000000000000..c1f104aa1e0b > --- /dev/null > +++ b/rules/libtsm.in > @@ -0,0 +1,11 @@ > +## SECTION=system_libraries > + > +config LIBTSM > + tristate > + select HOST_MESON > + select LIBXKBCOMMON > + prompt "libtsm" > + help > + Terminal-emulator State Machine > + > +# vim: ft=kconfig tw=80 > diff --git a/rules/libtsm.make b/rules/libtsm.make > new file mode 100644 > index 000000000000..2986d2d05c54 > --- /dev/null > +++ b/rules/libtsm.make > @@ -0,0 +1,60 @@ > +# -*-makefile-*- > +# > +# Copyright (C) 2026 by Philipp Zabel <[email protected]> > +# > +# For further information about the PTXdist project and license conditions > +# see the README file. > +# > + > +# > +# We provide this package > +# > +PACKAGES-$(PTXCONF_LIBTSM) += libtsm > + > +# > +# Paths and names > +# > +LIBTSM_VERSION := 4.4.1 > +LIBTSM_MD5 := b821ba5e7f55b0c1118ac23a1668ce41 > +LIBTSM := libtsm-$(LIBTSM_VERSION) > +LIBTSM_SUFFIX := tar.gz > +LIBTSM_URL := > https://github.com/kmscon/libtsm/archive/refs/tags/v$(LIBTSM_VERSION).$(LIBTSM_SUFFIX) > +LIBTSM_SOURCE := $(SRCDIR)/$(LIBTSM).$(LIBTSM_SUFFIX) > +LIBTSM_DIR := $(BUILDDIR)/$(LIBTSM) > +LIBTSM_LICENSE := MIT and BSD-2-Clause > +LIBTSM_LICENSE_FILES := file://COPYING;md5=69e8256cdc4e949f86fedf94b1b320b4 > + > +# > ---------------------------------------------------------------------------- > +# Prepare > +# > ---------------------------------------------------------------------------- > + > +# > +# meson > +# > +LIBTSM_CONF_TOOL := meson > +LIBTSM_CONF_OPT := \ > + $(CROSS_MESON_USR) \ > + -Dextra_debug=false \ > + -Dtests=false \ > + -Dgtktsm=false > + > +# > ---------------------------------------------------------------------------- > +# Target-Install > +# > ---------------------------------------------------------------------------- > + > +$(STATEDIR)/libtsm.targetinstall: > + @$(call targetinfo) > + > + @$(call install_init, libtsm) > + @$(call install_fixup, libtsm,PRIORITY,optional) > + @$(call install_fixup, libtsm,SECTION,base) > + @$(call install_fixup, libtsm,AUTHOR,"Philipp Zabel > <[email protected]>") > + @$(call install_fixup, libtsm,DESCRIPTION,missing) > + > + @$(call install_lib, libtsm, 0, 0, 0644, libtsm) > + > + @$(call install_finish, libtsm) > + > + @$(call touch) > + > +# vim: ft=make
