2014-10-19 23:59:42 +02:00
|
|
|
#
|
2021-02-11 22:11:16 +01:00
|
|
|
# boxes - Command line filter to draw/remove ASCII boxes around text
|
|
|
|
# Copyright (c) 1999-2021 Thomas Jensen and the boxes contributors
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify it
|
|
|
|
# under the terms of the GNU General Public License, version 2, 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, write to the Free Software Foundation, Inc.,
|
|
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
#____________________________________________________________________________
|
2014-10-19 23:59:42 +02:00
|
|
|
#
|
|
|
|
# File: $(TOPDIR)/feeds/packages/utils/boxes/Makefile
|
|
|
|
# Date created: 2014-09-12 23:28
|
|
|
|
# Author: Lu Weifeng <lyredsoft@gmail.com>
|
2021-02-11 22:11:16 +01:00
|
|
|
# Usage:
|
2014-10-19 23:59:42 +02:00
|
|
|
# +-------------------------------------------------------------------------+
|
|
|
|
# |$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 |
|
|
|
|
# +-------------------------------------------------------------------------+
|
|
|
|
#============================================================================
|
|
|
|
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=boxes
|
2021-04-18 14:13:05 +02:00
|
|
|
PKG_VERSION:=2.1.0
|
2014-10-19 23:59:42 +02:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_BUILD_DIR:=$(PKG_NAME)-$(PKG_VERSION).$(PKG_RELEASE)
|
|
|
|
|
|
|
|
|
2021-04-18 14:13:05 +02:00
|
|
|
PKG_SOURCE:=v2.1.0.tar.gz
|
2015-01-16 22:16:13 +01:00
|
|
|
PKG_SOURCE_URL:=http://github.com/ascii-boxes/boxes/archive/
|
2014-10-19 23:59:42 +02:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/boxes
|
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
|
|
|
TITLE:=HW
|
|
|
|
endef
|
|
|
|
define Package/boxes/description
|
2021-02-11 22:11:16 +01:00
|
|
|
boxes
|
2014-10-19 23:59:42 +02:00
|
|
|
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))
|