This tool can be described as a tiny, dirty C command that looks for coreutils basic commands (cp, mv, dd, tar, gzip/gunzip, cat, etc.) currently running on your system and displays the percentage of copied data. It can also show estimated time and throughput, and provides a "top-like" mode (monitoring). WWW: https://github.com/Xfennec/progress
28 lines
535 B
Makefile
28 lines
535 B
Makefile
PORTNAME= progress
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.17
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= tagattie@FreeBSD.org
|
|
COMMENT= Show progress for various command-line programs
|
|
WWW= https://github.com/Xfennec/progress
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= gmake
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= Xfennec
|
|
|
|
ALL_TARGET= ${PORTNAME}
|
|
|
|
PLIST_FILES= bin/${PORTNAME} \
|
|
share/man/man1/${PORTNAME}.1.gz \
|
|
share/zsh/site-functions/_${PORTNAME}
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
|
|
|
|
.include <bsd.port.mk>
|