package/tmux: new package

[Peter: fix license info]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Yann E. MORIN 2014-01-25 00:15:14 +01:00 committed by Peter Korsgaard
parent 2951d1e207
commit 063ab4de0f
3 changed files with 25 additions and 0 deletions

View File

@ -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"

9
package/tmux/Config.in Normal file
View File

@ -0,0 +1,9 @@
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/

13
package/tmux/tmux.mk Normal file
View File

@ -0,0 +1,13 @@
###############################################################################
#
# 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))