1fb943759f
MicroSocks is a SOCKS5 service that you can run on your remote boxes to tunnel connections through them, if for some reason SSH does not cut it for you. WWW: https://github.com/rofl0r/microsocks PR: 233941 Submitted by: neel@neelc.org
21 lines
407 B
Makefile
21 lines
407 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= microsocks
|
|
PORTVERSION= 1.0.1
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://ftp.barfooze.de/pub/sabotage/tarballs/
|
|
|
|
MAINTAINER= neel@neelc.org
|
|
COMMENT= Multithreaded, small, efficient SOCKS5 server
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= tar:xz
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|