toaruos/toolchain/rebuild-vim.sh
2013-05-05 15:00:24 -07:00

18 lines
728 B
Bash
Executable File

#!/bin/bash
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
. $DIR/config.sh
. $DIR/util.sh
pushd tarballs > /dev/null
rm -rf "vim73"
deco "vim" "vim-7.3.tar.bz2"
patc "vim" "vim73"
popd > /dev/null
pushd $DIR/tarballs/vim73
ac_cv_sizeof_int=4 vim_cv_getcwd_broken=no vim_cv_memmove_handles_overlap=yes vim_cv_stat_ignores_slash=no vim_cv_tgetent=zero vim_cv_terminfo=yes vim_cv_toupper_broken=no vim_cv_tty_group=world ./configure --host=$TARGET --target=$TARGET --prefix=$PREFIX/$TARGET --with-tlib=ncurses --enable-gui=no --disable-gtktest --disable-xim --with-features=normal --disable-gpm --without-x --disable-netbeans --enable-multibyte
make || bail
cp src/vim $DIR/../hdd/bin/vim
popd