Created
December 3, 2014 02:31
-
-
Save nocd5/dcff04a491b31a253d00 to your computer and use it in GitHub Desktop.
This file contains 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/sh | |
mkdir -p build | |
pushd build | |
tar zxvf ../libevent-2.0.21-stable.tar.gz | |
pushd libevent-2.0.21-stable | |
./configure | |
make | |
popd | |
tar zxvf ../ncurses-5.9.tar.gz | |
pushd ncurses-5.9 | |
./configure | |
make | |
popd | |
tar zxvf ../tmux-1.9a.tar.gz | |
pushd tmux-1.9a | |
./configure --prefix=/user/nocd5/temp/tmux_build_test --enable-static CFLAGS="-I../libevent-2.0.21-stable/include -L../libevent-2.0.21-stable -levent -I../ncurses-5.9/include -L../ncurses-5.9/lib -lncurses" | |
make && make install | |
popd | |
popd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment