mirror of
https://github.com/openwrt/packages.git
synced 2026-06-20 07:50:31 +04:00
6c55fe0c43
Explicitly enable ncurses usage and add dependency for it. (Feature was added 1.9.24, and buildbot has occasionally failed due to the missing dependency if ncurses has been already built.) Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
51 lines
1.3 KiB
Makefile
51 lines
1.3 KiB
Makefile
#
|
|
# Copyright (C) 2008 David Cooper
|
|
# Copyright (C) 2008-2014 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:=pv
|
|
PKG_VERSION:=1.9.31
|
|
PKG_RELEASE:=2
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://www.ivarch.com/programs/sources
|
|
PKG_HASH:=a35e92ec4ac0e8f380e8e840088167ae01014bfa008a3a9d6506b848079daedf
|
|
PKG_LICENSE:=GPL-3.0-or-later
|
|
PKG_LICENSE_FILES:=docs/COPYING
|
|
PKG_MAINTAINER:=
|
|
|
|
PKG_INSTALL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/pv
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=Shell pipeline element to meter data passing through
|
|
URL:=https://www.ivarch.com/programs/pv.shtml
|
|
DEPENDS:=+libncursesw
|
|
endef
|
|
|
|
define Package/pv/description
|
|
Pipe Viewer is a terminal-based tool for monitoring the progress of data
|
|
through a pipeline. It can be inserted into any normal pipeline between
|
|
two processes to give a visual indication of how quickly data is passing
|
|
through, how long it has taken, how near to completion it is, and an
|
|
estimate of how long it will be until completion.
|
|
endef
|
|
|
|
CONFIGURE_ARGS += --with-ncurses
|
|
|
|
define Package/pv/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/pv $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,pv))
|
|
|