pv: import from oldpackages, add myself as maintainer, update to latest v1.5.3
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
This commit is contained in:
parent
0a4217b2fe
commit
2822192234
1 changed files with 46 additions and 0 deletions
46
utils/pv/Makefile
Normal file
46
utils/pv/Makefile
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
#
|
||||||
|
# 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.5.3
|
||||||
|
PKG_RELEASE:=1
|
||||||
|
|
||||||
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||||||
|
PKG_SOURCE_URL:=http://www.ivarch.com/programs/sources/
|
||||||
|
PKG_MD5SUM:=efe8e9e4cad5f3264a32258a63bf2c8e
|
||||||
|
PKG_LICENSE:=Artistic-2.0
|
||||||
|
PKG_MAINTAINER:=Jo-Philipp Wich <jow@openwrt.org>
|
||||||
|
|
||||||
|
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:=http://www.ivarch.com/programs/pv.shtml
|
||||||
|
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
|
||||||
|
|
||||||
|
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))
|
||||||
|
|
Loading…
Reference in a new issue