libeventをインストールする
git clone git@github.com:libevent/libevent.git
cd libevent
./autogen.sh
./configure
make
make install
libeventのPATHを通す
# 一時的にPATHを通す
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib"
source ~/.profile # ターミナルを再起動せずに変更を反映させる
# ncursesをインストールする
```bash
cd /tmp
curl -O https://invisible-mirror.net/archives/ncurses/ncurses-6.1.tar.gz
tar -zxvf ncurses-6.1.tar.gz
cd ncurses-6.1
./configure
make
make install
tmuxをインストールする
git clone git@github.com:tmux/tmux.git
cd tmux
sh autogen.sh
./configure && make
make install