commit a34cf1e8123c2a644976ceeb0c75fc7af327b6c7 parent 9047543aa5a4c267cd7cee417943ff59f16c411a Author: Hiltjo Posthuma <hiltjo@codemadness.org> Date: Sun, 27 Apr 2014 15:18:10 +0200 add tmux Signed-off-by: Hiltjo Posthuma <hiltjo@codemadness.org> Diffstat:
A | tmux/mkfile | | | 6 | ++++++ |
A | tmux/tmux.mk | | | 14 | ++++++++++++++ |
A | tmux/v.mk | | | 1 | + |
3 files changed, 21 insertions(+), 0 deletions(-)
diff --git a/tmux/mkfile b/tmux/mkfile @@ -0,0 +1,6 @@ +<$mkbuild/mk.3rdparty + +<v.mk +src = tmux-$v +url = http://kent.dl.sourceforge.net/project/tmux/tmux/tmux-1.9/tmux-$v.tar.gz +mkfile = ../tmux.mk diff --git a/tmux/tmux.mk b/tmux/tmux.mk @@ -0,0 +1,14 @@ +TARG = tmux +DEPS = ncurses libevent +INSTALL_BIN = tmux +INSTALL_MAN1 = tmux.1 + +<$mkbuild/mk.common + +tmux:QV: + export CFLAGS="$CFLAGS $DEPS_CFLAGS" + export LDFLAGS="$LDFLAGS $DEPS_LDFLAGS" + CC="$CC" ./configure --prefix="$prefix" --mandir="$ROOT/share/man" \ + --disable-shared \ + --enable-static + make -j$nprocs diff --git a/tmux/v.mk b/tmux/v.mk @@ -0,0 +1 @@ +v = 1.9a