Difficulty
Easy
tmux
Goal
Compile tmux
Steps
Library Prerequisites
yum -y install libevent-devel ncurses-devel
EXPORTS used to set versions
You can change the values here to change compiled version.
TMUX_VERSION=3.2a
Fetch tmux
wget https://github.com/tmux/tmux/releases/download/${TMUX_VERSION}/tmux-${TMUX_VERSION}.tar.gz tar zxfv tmux-${TMUX_VERSION}.tar.gz cd tmux-${TMUX_VERSION}
Build tmux
./configure --prefix=/usr make
Install tmux
make install