boxes/boxes-pkg.openwrt

58 lines
2.4 KiB
Plaintext
Raw Permalink Normal View History

#
# boxes - Command line filter to draw/remove ASCII boxes around text
2024-02-16 22:01:58 +01:00
# Copyright (c) 1999-2024 Thomas Jensen and the boxes contributors
#
2022-09-18 14:56:30 +02:00
# This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public
# License, version 3, as published by the Free Software Foundation.
# This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
# details.
# You should have received a copy of the GNU General Public License along with this program.
# If not, see <https://www.gnu.org/licenses/>.
#____________________________________________________________________________________________________________________
#
# File: $(TOPDIR)/feeds/packages/utils/boxes/Makefile
# Date created: 2014-09-12 23:28
# Author: Lu Weifeng <lyredsoft@gmail.com>
# Usage:
# +-------------------------------------------------------------------------+
# |$cd $(TOPDIR) |
# |$./scripts/feeds update -i |
# |$./scripts/feeds install boxes |
# |$apt-get install binutils-multiarch |
# |$make package/boxes/compile package/index |
# |$scp $(TOPDIR)/bin/ar71xx/packages/boxes_1.1-1_ar71xx.ipk openwrt:/tmp/|
# |$opkg install --force-depends /tmp/boxes_1.1-1_ar71xx.ipk |
# +-------------------------------------------------------------------------+
2022-09-18 14:56:30 +02:00
#====================================================================================================================
include $(TOPDIR)/rules.mk
PKG_NAME:=boxes
2024-10-03 10:47:35 +02:00
PKG_VERSION:=2.3.1
PKG_RELEASE:=1
PKG_BUILD_DIR:=$(PKG_NAME)-$(PKG_VERSION).$(PKG_RELEASE)
2024-10-03 10:47:35 +02:00
PKG_SOURCE:=v2.3.1.tar.gz
PKG_SOURCE_URL:=https://github.com/ascii-boxes/boxes/archive/refs/tags/
include $(INCLUDE_DIR)/package.mk
define Package/boxes
SECTION:=utils
CATEGORY:=Utilities
TITLE:=HW
endef
define Package/boxes/description
boxes
endef
define Package/boxes/Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR) boxes
endef
define Package/boxes/install
$(INSTALL_DIR) $(1)/bin/
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/boxes $(1)/bin/
endef
$(eval $(call BuildPackage,boxes))