diff options
author | miwi <miwi@FreeBSD.org> | 2008-06-01 21:18:00 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2008-06-01 21:18:00 +0800 |
commit | 69540b56480ef2ad5c96749cf98ea1bdd34542be (patch) | |
tree | 127e12cc78b6fa03e30a661035d5ca1bdea5824c /sysutils/tmux | |
parent | 498c807b70d98783ef280b40876e7b30dbd4985c (diff) | |
download | freebsd-ports-graphics-69540b56480ef2ad5c96749cf98ea1bdd34542be.tar.gz freebsd-ports-graphics-69540b56480ef2ad5c96749cf98ea1bdd34542be.tar.zst freebsd-ports-graphics-69540b56480ef2ad5c96749cf98ea1bdd34542be.zip |
Tmux is a terminal multiplexer, it enables a number of terminals to be accessed
and controlled from a single terminal. tmux is intended to be a simple, modern,
BSD-licensed alternative to programs such as GNU screen.
WWW: http://tmux.sf.net/
PR: ports/124093
Submitted by: Wen Heping <wenheping at gmail.com>
Diffstat (limited to 'sysutils/tmux')
-rw-r--r-- | sysutils/tmux/Makefile | 24 | ||||
-rw-r--r-- | sysutils/tmux/distinfo | 3 | ||||
-rw-r--r-- | sysutils/tmux/pkg-descr | 5 |
3 files changed, 32 insertions, 0 deletions
diff --git a/sysutils/tmux/Makefile b/sysutils/tmux/Makefile new file mode 100644 index 00000000000..51f4aa2db7e --- /dev/null +++ b/sysutils/tmux/Makefile @@ -0,0 +1,24 @@ +# New ports collection makefile for: tmux +# Date created: 28 May 2008 +# Whom: Wen Heping <wenheping@gmail.com> +# +# $FreeBSD$ +# + +PORTNAME= tmux +PORTVERSION= 0.2 +CATEGORIES= misc +MASTER_SITES= SF + +MAINTAINER= wenheping@gmail.com +COMMENT= A Terminal Multiplexer + +MAN1= tmux.1 + +PLIST_FILES= bin/tmux + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/tmux ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/tmux.1 ${MANPREFIX}/man/man1 + +.include <bsd.port.mk> diff --git a/sysutils/tmux/distinfo b/sysutils/tmux/distinfo new file mode 100644 index 00000000000..9ed60e038f4 --- /dev/null +++ b/sysutils/tmux/distinfo @@ -0,0 +1,3 @@ +MD5 (tmux-0.2.tar.gz) = 455a69bcebcd326a0c3736f9b1ef9ea3 +SHA256 (tmux-0.2.tar.gz) = 1866c83a9700636170e4d342d21f6b4c227a19ab1070702258c1ac9f9e1df4a3 +SIZE (tmux-0.2.tar.gz) = 76574 diff --git a/sysutils/tmux/pkg-descr b/sysutils/tmux/pkg-descr new file mode 100644 index 00000000000..a97db267814 --- /dev/null +++ b/sysutils/tmux/pkg-descr @@ -0,0 +1,5 @@ +Tmux is a terminal multiplexer, it enables a number of terminals to be accessed +and controlled from a single terminal. tmux is intended to be a simple, modern, +BSD-licensed alternative to programs such as GNU screen. + +WWW: http://tmux.sf.net/ |