summaryrefslogtreecommitdiffstats
path: root/rules/tmux.make
diff options
context:
space:
mode:
authorBernhard Walle <bernhard@bwalle.de>2012-06-13 21:03:59 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2012-06-14 02:19:22 +0200
commitdd9a86ceda765cbed7c3a1d50104422c43118287 (patch)
tree085fb0fa8b43f83a4cbdd29b79b0ac6a7d9d3797 /rules/tmux.make
parent79d6a18f2389d47737130ae563999ce9cae513b1 (diff)
downloadptxdist-dd9a86ceda765cbed7c3a1d50104422c43118287.tar.gz
ptxdist-dd9a86ceda765cbed7c3a1d50104422c43118287.tar.xz
tmux: new package
tmux is a terminal mutiplexer. Something like GNU screen, but BSD licensed, actively developed and with a (at least in my opinion) simpler configuration. Signed-off-by: Bernhard Walle <bernhard@bwalle.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'rules/tmux.make')
-rw-r--r--rules/tmux.make56
1 files changed, 56 insertions, 0 deletions
diff --git a/rules/tmux.make b/rules/tmux.make
new file mode 100644
index 000000000..d0aa94cf5
--- /dev/null
+++ b/rules/tmux.make
@@ -0,0 +1,56 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2012 by Bernhard Walle <bernhard@bwalle.de>
+#
+# See CREDITS for details about who has contributed to this project.
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+PACKAGES-$(PTXCONF_TMUX) += tmux
+
+#
+# Paths and names
+#
+TMUX_VERSION := 1.6
+TMUX_MD5 := 3e37db24aa596bf108a0442a81c845b3
+TMUX := tmux-$(TMUX_VERSION)
+TMUX_SUFFIX := tar.gz
+TMUX_URL := $(call ptx/mirror, SF, tmux/$(TMUX).$(TMUX_SUFFIX))
+TMUX_SOURCE := $(SRCDIR)/$(TMUX).$(TMUX_SUFFIX)
+TMUX_DIR := $(BUILDDIR)/$(TMUX)
+TMUX_LICENSE := BSD
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+#
+# autoconf
+#
+TMUX_CONF_TOOL := autoconf
+
+# ----------------------------------------------------------------------------
+# Target-Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/tmux.targetinstall:
+ @$(call targetinfo)
+
+ @$(call install_init, tmux)
+ @$(call install_fixup, tmux,PRIORITY,optional)
+ @$(call install_fixup, tmux,SECTION,base)
+ @$(call install_fixup, tmux,AUTHOR,"Bernhard Walle <bernhard@bwalle.de>")
+ @$(call install_fixup, tmux,DESCRIPTION,missing)
+
+ @$(call install_copy, tmux, 0, 0, 0755, -, /usr/bin/tmux)
+
+ @$(call install_finish, tmux)
+
+ @$(call touch)
+
+# vim: syntax=make