395f5f6700
Bind a local port and connect it to a remote socket
18 lines
525 B
Makefile
18 lines
525 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2009/07/16 02:20:43 prudhvikrishna Exp $
|
|
#
|
|
|
|
DISTNAME= datapipe-1.0
|
|
CATEGORIES= net
|
|
MASTER_SITES= ftp://ftp.distributed.net/dcti/unsupported/
|
|
|
|
MAINTAINER= prudhvi-krishna-bsd@surapaneni.in
|
|
HOMEPAGE= ftp://ftp.distributed.net/dcti/unsupported/
|
|
COMMENT= Bind a local port and connect it to a remote socket
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
do-build:
|
|
${CC} -o ${WRKSRC}/datapipe ${WRKSRC}/datapipe.c
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/datapipe ${PREFIX}/bin
|
|
.include "../../mk/bsd.pkg.mk"
|