Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
software:tmux [2017/03/30 06:10]
eServices Greece
software:tmux [2021/11/16 09:09] (current)
eServices Greece
Line 8: Line 8:
 === Library Prerequisites === === Library Prerequisites ===
 <sxh bash> <sxh bash>
-yum install libevent-devel ncurses-devel+yum -y install libevent-devel ncurses-devel
 </sxh> </sxh>
 +
 +==== EXPORTS used to set versions ====
 +You can change the values here to change compiled version.
 +<sxh>
 +TMUX_VERSION=3.2a
 +</sxh>
 +
  
 === Fetch tmux === === Fetch tmux ===
 <sxh bash> <sxh bash>
-wget https://github.com/tmux/tmux/releases/download/2.3/tmux-2.3.tar.gz +wget https://github.com/tmux/tmux/releases/download/${TMUX_VERSION}/tmux-${TMUX_VERSION}.tar.gz 
-tar zxfv tmux-2.3.tar.gz +tar zxfv tmux-${TMUX_VERSION}.tar.gz 
-cd tmux-2.3+cd tmux-${TMUX_VERSION}
 </sxh> </sxh>
  
Line 24: Line 31:
  
 === Install tmux === === Install tmux ===
-<sxh bash>cp tmux /usr/bin/</sxh>+<sxh bash>make install</sxh>