diff options
author | bapt <bapt@FreeBSD.org> | 2016-11-23 20:44:38 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2016-11-23 20:44:38 +0800 |
commit | 14033ee9eea4482bcff0519551003d231b38c244 (patch) | |
tree | bb31d0b4a0c0a06b39300b4454d1718bca74a9d3 | |
parent | 5956d1c40e2d348049b6756b61f756a32dda31a2 (diff) | |
download | freebsd-ports-gnome-14033ee9eea4482bcff0519551003d231b38c244.tar.gz freebsd-ports-gnome-14033ee9eea4482bcff0519551003d231b38c244.tar.zst freebsd-ports-gnome-14033ee9eea4482bcff0519551003d231b38c244.zip |
Add ttyd:
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>
-rw-r--r-- | sysutils/Makefile | 1 | ||||
-rw-r--r-- | sysutils/ttyd/Makefile | 26 | ||||
-rw-r--r-- | sysutils/ttyd/distinfo | 3 | ||||
-rw-r--r-- | sysutils/ttyd/pkg-descr | 4 |
4 files changed, 34 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile index 36fea7f22148..802f91efeeff 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -1116,6 +1116,7 @@ SUBDIR += tren SUBDIR += ts SUBDIR += tss + SUBDIR += ttyd SUBDIR += tty-clock SUBDIR += ttyload SUBDIR += tuptime diff --git a/sysutils/ttyd/Makefile b/sysutils/ttyd/Makefile new file mode 100644 index 000000000000..dd880197f8fc --- /dev/null +++ b/sysutils/ttyd/Makefile @@ -0,0 +1,26 @@ +# $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> diff --git a/sysutils/ttyd/distinfo b/sysutils/ttyd/distinfo new file mode 100644 index 000000000000..bb425db1b47b --- /dev/null +++ b/sysutils/ttyd/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1479470581 +SHA256 (tsl0922-ttyd-1.2.0_GH0.tar.gz) = 00f8399a1045057a55a5a5dd2540bfbf39df972ad0c1c2a9e3bc94574514c9bd +SIZE (tsl0922-ttyd-1.2.0_GH0.tar.gz) = 177550 diff --git a/sysutils/ttyd/pkg-descr b/sysutils/ttyd/pkg-descr new file mode 100644 index 000000000000..5ec406c3fa67 --- /dev/null +++ b/sysutils/ttyd/pkg-descr @@ -0,0 +1,4 @@ +ttyd is a simple command-line tool for sharing terminal over the web, inspired +by GoTTY. + +WWW: https://www.github.com/tsl0922/ttyd |