freebsd-ports/sysutils/xpipe/Makefile
Hiroki Tagato 93a8503683 The xpipe command reads input from stdin and splits it by the given number of
bytes, lines, or if matching the given pattern. It then invokes the given
utility repeatedly, feeding it the generated data chunks as input. You can
think of it as a Unix love-child of the split(1), tee(1), and xargs(1)
commands.

WWW: https://github.com/jschauma/xpipe

PR:		246195
Submitted by:	jjuanino@gmail.com
Approved by:	ehaupt (mentor)
2020-05-20 09:21:57 +00:00

25 lines
544 B
Makefile

# Created by: Jose G. Juanino <jjuanino@gmail.com>
# $FreeBSD$
PORTNAME= xpipe
DISTVERSION= g20200503
CATEGORIES= sysutils
MAINTAINER= jjuanino@gmail.com
COMMENT= Split input and feed it into the given utility
LICENSE= BSD2CLAUSE
USE_GITHUB= yes
GH_ACCOUNT= jschauma
GH_TAGNAME= 60b0aec
PLIST_FILES= bin/${PORTNAME} \
share/man/man1/${PORTNAME}.1.gz
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/doc/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/share/man/man1
.include <bsd.port.mk>