# download sources for libecent and make and install curl -OL https://github.com/libevent/libevent/releases/download/release-2.0.22-stable/libevent-2.0.22-stable.tar.gz tar -xvzf libevent-2.0.22-stable.tar.gz cd libevent-2.0.22-stable ./configure --prefix=/usr/local make -j`nproc` make install cd ..
# download sources for tmux and make and install curl -OL https://github.com/tmux/tmux/releases/download/2.3/tmux-2.3.tar.gz tar -xvzf tmux-2.3.tar.gz cd tmux-2.3 LDFLAGS="-L/usr/local/lib -Wl,-rpath=/usr/local/lib" ./configure --prefix=/usr/local make -j`nproc` make install cd ..