c9e5b0da2c
ttyd is a simple command-line tool for sharing terminal over the web, inspired by GoTTY. WWW: https://www.github.com/tsl0922/ttyd PR: 213503 Submitted by: Neel Chauhan <neel@neelc.org>
26 lines
501 B
Makefile
26 lines
501 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= ttyd
|
|
PORTVERSION= 1.2.0
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= neel@neelc.org
|
|
COMMENT= Program to share your terminal over the web
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= xxd:editors/vim-lite
|
|
LIB_DEPENDS= libjson-c.so:devel/json-c \
|
|
libwebsockets.so:net/libwebsockets
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= tsl0922
|
|
|
|
USES= cmake pkgconfig ssl
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/ttyd ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|