From 5cdfcd64de5b40276b11ffe9384f9a7956b765b8 Mon Sep 17 00:00:00 2001 From: Yingjie Wang Date: Tue, 6 Jan 2026 08:04:53 -0500 Subject: [PATCH] new bblfs: x11-terms/kitty-terminfo-0.44.0 --- x11-terms/kitty-terminfo-0.44.0.PKGBUILD | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 x11-terms/kitty-terminfo-0.44.0.PKGBUILD diff --git a/x11-terms/kitty-terminfo-0.44.0.PKGBUILD b/x11-terms/kitty-terminfo-0.44.0.PKGBUILD new file mode 100644 index 0000000..2ad111e --- /dev/null +++ b/x11-terms/kitty-terminfo-0.44.0.PKGBUILD @@ -0,0 +1,21 @@ +pkgname=kitty-terminfo +pkgbase=kitty +pkgver=0.44.0 +pkgdesc="A modern, hackable, featureful, OpenGL-based terminal emulator" +arch=('x86_64') +homepage="https://github.com/kovidgoyal/kitty" +license=('GPL-3.0-only') +sources=("${pkgbase}-${pkgver}.tar.xz") +urls=("https://github.com/kovidgoyal/${pkgbase}/releases/download/v${pkgver}/${sources[0]}") +md5sums=("c3c31e13371c08166cc2bc4ea34cdc74") + +src_prepare() { + tar -xf ${distdir}/${sources[0]} --strip-components=1 +} + +src_install() { + mkdir -p "$pkgdir/usr/share/terminfo" + tic -xo "${pkgdir}"/usr/share/terminfo terminfo/kitty.terminfo +} + +# vim:ft=sh syn=sh et sw=2: