# Depends on libevent

# Exit on error:
set -e

wget https://www.github.com/tmux/tmux/releases/download/1.8/tmux-1.8.tar.gz
tar xf tmux-1.8.tar.gz
cd tmux-1.8
./configure --prefix=
make install
cd ..
rm -rf tmux-1.8
rm tmux-1.8.tar.gz

exit 0
