Created
June 29, 2013 14:15
-
-
Save tkak/5891261 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| curl -sL 'https://github.com/downloads/libevent/libevent/libevent-2.0.20-stable.tar.gz' | tar zx | |
| cd libevent-2.0.20-stable | |
| ./configure --prefix=$HOME/local --disable-shared | |
| make && make install | |
| cd | |
| curl -sL 'http://downloads.sourceforge.net/tmux/tmux-1.8.tar.gz' | tar zx | |
| cd tmux-1.8 | |
| ./configure --prefix=$HOME/local CFLAGS="-I$HOME/local/include -R$HOME/local/lib" LDFLAGS="-L$HOME/local/lib" | |
| make && make install | |
| tmux -V |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment