package/tmux: new package
authorYann E. MORIN <yann.morin.1998@free.fr>
Fri, 24 Jan 2014 23:15:14 +0000 (00:15 +0100)
committerPeter Korsgaard <peter@korsgaard.com>
Tue, 28 Jan 2014 21:16:11 +0000 (22:16 +0100)
[Peter: fix license info]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
package/Config.in
package/tmux/Config.in [new file with mode: 0644]
package/tmux/tmux.mk [new file with mode: 0644]

index 677f01e27a4e77a5e38b7cac9a08a0299d3ec732..47d1d3214e01ead22370d1392be262ec88842cae 100644 (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"
diff --git a/package/tmux/Config.in b/package/tmux/Config.in
new file mode 100644 (file)
index 0000000..831d119
--- /dev/null
@@ -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/
diff --git a/package/tmux/tmux.mk b/package/tmux/tmux.mk
new file mode 100644 (file)
index 0000000..3f5f893
--- /dev/null
@@ -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))