123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #
- # Copyright (C) 2017-2018 Daniel Engberg <daniel.engberg.lists@pyret.net>
- #
- # This is free software, licensed under the GNU General Public License v2.
- # See /LICENSE for more information.
- #
- include $(TOPDIR)/rules.mk
- PKG_NAME:=tio
- PKG_VERSION:=1.28
- PKG_RELEASE:=1
- PKG_MAINTAINER:=
- PKG_LICENSE:=GPL-2.0+
- PKG_LICENSE_FILES:=COPYING
- PKG_SOURCE_URL:=https://github.com/$(PKG_NAME)/$(PKG_NAME)/releases/download/v$(PKG_VERSION)/
- PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
- PKG_HASH:=bb5fa22b2ca5c2eeb811f57e1af45ae5a2b852eed1aabbeb3a419cc3b4d4d22a
- PKG_FIXUP:=autoreconf
- include $(INCLUDE_DIR)/package.mk
- define Package/tio
- SECTION:=utils
- CATEGORY:=Utilities
- TITLE:=A simple TTY terminal I/O application
- URL:=https://tio.github.io/
- SUBMENU:=Terminal
- endef
- define Package/tio/description
- A small and simple TTY terminal I/O application
- endef
- define Package/tio/install
- $(INSTALL_DIR) $(1)/usr/sbin
- $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/tio $(1)/usr/sbin/
- endef
- $(eval $(call BuildPackage,tio))
|