diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2022-05-26 00:41:26 -0400 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2022-05-26 02:06:02 -0400 |
commit | ec6af778f5f6f05804c836cb826041e90850dce5 (patch) | |
tree | 0367e0f34d5066bc971e6b27dd63f7dddfa2314c /x11-terms/kitty-terminfo | |
parent | x11-terms/kitty-shell-integration: add 0.25.1 (diff) | |
download | gentoo-ec6af778f5f6f05804c836cb826041e90850dce5.tar.gz gentoo-ec6af778f5f6f05804c836cb826041e90850dce5.tar.bz2 gentoo-ec6af778f5f6f05804c836cb826041e90850dce5.zip |
x11-terms/kitty-terminfo: add 0.25.1
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'x11-terms/kitty-terminfo')
-rw-r--r-- | x11-terms/kitty-terminfo/Manifest | 1 | ||||
-rw-r--r-- | x11-terms/kitty-terminfo/kitty-terminfo-0.25.1.ebuild | 23 |
2 files changed, 24 insertions, 0 deletions
diff --git a/x11-terms/kitty-terminfo/Manifest b/x11-terms/kitty-terminfo/Manifest index c84732ba070b..aaf0e56276fb 100644 --- a/x11-terms/kitty-terminfo/Manifest +++ b/x11-terms/kitty-terminfo/Manifest @@ -1 +1,2 @@ DIST kitty-0.25.0.tar.xz 4640360 BLAKE2B 2f982ecb2d13c49a6971d4a863f2215f22ccae2cc50fd7b6c6b5c2facf781ac23ec627edcbec8ebaa538c5d67b0b62ad4cc05aedf90fd722d9d886c2f62d5b42 SHA512 fed8d66a9f7f2117f4b495305db0d56d8b85ef03bf7ef24a7dca31e63e16fc90e026aa8022237ad45678efb026f11fdd8aa377eb53917fd8ec885f2ccea721f8 +DIST kitty-0.25.1.tar.xz 4671008 BLAKE2B f5110c64e3659499351875dfb4ad9dba85724184cbb742d4b2fe63dcb604b5c8e8736c51ae126345736cbb90238ba3c9e3de099cd6ebfdd0e50b5dfb36c2d2b6 SHA512 6d9862f8411372e0cf692114d6e29eb92db3a2e324282a21ca35b2ca5229c9d87ab988e802e44d47e98b6e64ae7abc5ff0cc677c082eb287e14ee68cd1a4c31e diff --git a/x11-terms/kitty-terminfo/kitty-terminfo-0.25.1.ebuild b/x11-terms/kitty-terminfo/kitty-terminfo-0.25.1.ebuild new file mode 100644 index 000000000000..35ff98034a87 --- /dev/null +++ b/x11-terms/kitty-terminfo/kitty-terminfo-0.25.1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Terminfo for kitty, a GPU-based terminal emulator" +HOMEPAGE="https://sw.kovidgoyal.net/kitty/" +SRC_URI="https://github.com/kovidgoyal/kitty/releases/download/v${PV}/kitty-${PV}.tar.xz" +S="${WORKDIR}/kitty-${PV}" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~ppc64 ~x86" +RESTRICT="test" # intended to be ran on the full kitty package + +BDEPEND="sys-libs/ncurses" + +src_compile() { :; } + +src_install() { + dodir /usr/share/terminfo + tic -xo "${ED}"/usr/share/terminfo terminfo/kitty.terminfo || die +} |