1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-25 22:38:32 +00:00
morpheus/pkgs/tmux

12 lines
292 B
Plaintext
Raw Normal View History

2014-02-28 12:34:18 +00:00
build: ncurses libevent
2014-02-27 12:41:37 +00:00
v="1.8"
url="$mirror/tmux-$v.tar.gz"
cd src
2014-02-27 12:41:37 +00:00
wget -c $url
[ -d tmux-$v ] || tar xzf tmux-$v.tar.gz
cd tmux-$v
CC=$CC ./configure --prefix="$root" \
CFLAGS="-I$libcroot/include/ncursesw $CFLAGS" || return 1
make -j$nprocs || return 1
2013-09-17 14:40:13 +00:00
make install || return 1