7b5cdd9c89
The shunt utilites: shunt, exactly, and flyisofs, were originally written for burning multi-set CDROM backups using mkiosfs and cdrecord. The key utility -- shunt -- manages recursive access to piped I/O, so that programs may be restarted and continue to use an existing pipe. submitted by Josh Grosse <josh at jggimi.homeip.net>
31 lines
612 B
Makefile
31 lines
612 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2007/09/14 18:54:20 steven Exp $
|
|
|
|
COMMENT= tools to extend pipe capabilities
|
|
|
|
DISTNAME= shunt-1.7.2
|
|
CATEGORIES= sysutils
|
|
|
|
HOMEPAGE= http://www.serice.net/shunt/
|
|
|
|
MAINTAINER= Josh Grosse <josh@jggimi.homeip.net>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${HOMEPAGE}
|
|
|
|
WANTLIB= c
|
|
|
|
USE_GMAKE= Yes
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKBUILD}/bin/* /${PREFIX}/bin
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/shunt
|
|
${INSTALL_DATA} ${WRKSRC}/README.TXT ${PREFIX}/share/doc/shunt
|
|
|
|
.include <bsd.port.mk>
|
|
|