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

12 lines
325 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
2014-02-28 13:41:26 +00:00
CC=$CC ./configure --prefix="$root" LDFLAGS="$optldflags -static" \
CFLAGS="$optcflags -I$libcroot/include/ncursesw" || return 1
make -j$nprocs || return 1
2013-09-17 14:40:13 +00:00
make install || return 1