1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-07-01 03:31:21 +00:00
morpheus/pkgs/tmux

25 lines
368 B
Plaintext
Raw Normal View History

2013-09-07 14:40:54 +00:00
url=$mirror/tmux-1.8.tar.gz
fetch() {
wget -c $url -O src/tmux-1.8.tar.gz
}
unpack() {
pushd src
[ -d tmux-1.8 ] || tar xzf tmux-1.8.tar.gz
popd
}
build() {
pushd src/tmux-1.8
2013-09-25 13:33:33 +00:00
CC=x86_64-linux-musl-gcc ./configure --prefix=$root LDFLAGS=-static || return 1
make -j$nprocs || return 1
2013-09-07 14:40:54 +00:00
popd
}
install() {
pushd src/tmux-1.8
2013-09-17 14:40:13 +00:00
make install || return 1
2013-09-07 14:40:54 +00:00
popd
}