Commit 063ab4de authored by Yann E. MORIN's avatar Yann E. MORIN Committed by Peter Korsgaard
Browse files

package/tmux: new package



[Peter: fix license info]
Signed-off-by: default avatar"Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: default avatarPeter Korsgaard <peter@korsgaard.com>
parent 2951d1e2
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -995,6 +995,9 @@ source "package/screen/Config.in"
source "package/sudo/Config.in"
if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
source "package/time/Config.in"
endif
source "package/tmux/Config.in"
if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
source "package/which/Config.in"
endif
source "package/xmlstarlet/Config.in"

package/tmux/Config.in

0 → 100644
+9 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_TMUX
	bool "tmux"
	select BR2_PACKAGE_LIBEVENT
	select BR2_PACKAGE_NCURSES
	help
	  tmux is a terminal multiplexer, it enables a number of terminals
	  (or windows) to be accessed and controlled from a single terminal.

	  http://tmux.sourceforge.net/

package/tmux/tmux.mk

0 → 100644
+13 −0
Original line number Diff line number Diff line
###############################################################################
#
# tmux
#
###############################################################################

TMUX_VERSION = 1.8
TMUX_SITE = http://downloads.sourceforge.net/tmux
TMUX_LICENSE = ISC
TMUX_LICENSE_FILES = README
TMUX_DEPENDENCIES = libevent ncurses host-pkgconf

$(eval $(autotools-package))