Skip to content

Instantly share code, notes, and snippets.

@KalenAnson
Forked from niun/build-tmux-debian.sh
Last active August 29, 2015 14:23
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 KalenAnson/8cb06028bc36d6b8544c to your computer and use it in GitHub Desktop.
Save KalenAnson/8cb06028bc36d6b8544c to your computer and use it in GitHub Desktop.
Build TMUX 1.9a on Debian Wheezy
#!/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
make install
ldconfig
cd ..
apt-get install libncurses-dev
wget "http://downloads.sourceforge.net/project/tmux/tmux/tmux-1.9/tmux-1.9a.tar.gz"
tar xvfz tmux-1.9a.tar.gz
cd tmux-1.9a/
./configure && make
make install
@KalenAnson
Copy link
Author

Run as root.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment