Skip to content

Instantly share code, notes, and snippets.

@nocd5
Created December 3, 2014 02:31
Show Gist options
  • Save nocd5/dcff04a491b31a253d00 to your computer and use it in GitHub Desktop.
Save nocd5/dcff04a491b31a253d00 to your computer and use it in GitHub Desktop.
#!/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