Skip to content

Instantly share code, notes, and snippets.

@chrisvaughn
Forked from t-cyrill/build-tmux.sh
Created November 16, 2013 16:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chrisvaughn/7502158 to your computer and use it in GitHub Desktop.
Save chrisvaughn/7502158 to your computer and use it in GitHub Desktop.
#!/bin/bash
wget "https://github.com/downloads/libevent/libevent/libevent-2.0.21-stable.tar.gz"
tar -xf libevent-2.0.21-stable.tar.gz
cd libevent-2.0.21-stable/
./configure
make
make verify
sudo make install
wget "http://downloads.sourceforge.net/project/tmux/tmux/tmux-1.8/tmux-1.8.tar.gz"
tar xvfz tmux-1.8.tar.gz
cd tmux-1.8/
./configure --enable-static && make
make
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment