Skip to content

Instantly share code, notes, and snippets.

@mbe14
mbe14 / build-tmux.sh
Created January 25, 2020 18:08 — forked from pistol/build-tmux.sh
compile tmux from source and statically link with libevent + ncurses
# ncurses
wget http://ftp.gnu.org/pub/gnu/ncurses/ncurses-5.9.tar.gz
tar xvzf ncurses-5.9.tar.gz
cd ncurses-5.9
./configure --prefix=$HOME/local
make -j8
make install
cd ..
# libevent