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 [2016/12/25 11:06]
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>
  
 === Build tmux === === Build tmux ===
-<sxh bash> +<sxh bash>./configure --prefix=/usr
-./configure+
 make make
 </sxh> </sxh>
  
 === Install tmux === === Install tmux ===
-<sxh bash> +<sxh bash>make install</sxh>
-cp tmux /usr/bin/ +
-</sxh>+