You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

45 lines
1.0 KiB

#
# Copyright (C) 2022 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=kitty-terminfo
PKG_VERSION:=0.24.4
PKG_RELEASE:=$(AUTORELEASE)
PKG_LICENSE:=GPL-3.0-or-later
PKG_SOURCE:=kitty-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://codeload.github.com/kovidgoyal/kitty/tar.gz/v$(PKG_VERSION)?
PKG_HASH:=e6619b635b5c9d6cebbba631a2175659698068ce1cd946732dc440b0f1c12ab3
PKG_BUILD_DIR:=$(BUILD_DIR)/kitty-$(PKG_VERSION)
include $(INCLUDE_DIR)/package.mk
define Package/kitty-terminfo
SECTION:=utils
CATEGORY:=Utilities
SUBMENU:=Terminal
TITLE:=Terminfo for kitty, an OpenGL-based terminal emulator
DEPENDS:=+libncurses
URL:=https://sw.kovidgoyal.net/kitty/
PKGARCH:=all
endef
define Build/Configure
endef
define Build/Compile
endef
define Package/kitty-terminfo/install
$(INSTALL_DIR) $(1)/usr/share/terminfo
tic -x -o $(1)/usr/share/terminfo $(PKG_BUILD_DIR)/terminfo/kitty.terminfo
endef
$(eval $(call BuildPackage,kitty-terminfo))