packages/utils/kitty-terminfo/Makefile
Jitao Lu 3d91826be8 kitty-terminfo: Fix license
Signed-off-by: Jitao Lu <dianlujitao@gmail.com>
2022-07-27 14:28:36 +08:00

45 lines
1 KiB
Makefile

#
# 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-only
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))