Last active
June 27, 2024 14:08
-
-
Save t-cyrill/5592427 to your computer and use it in GitHub Desktop.
build tmux 1.8 on debian squeeze
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
#!/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 | |
./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
Thanks, it worked for me (not using the --enable-static either).
I had a message on ./configure at first : Error: "curses not found"
It was fixed with : aptitude install ncurses-dev (debian wheezy)