vim: Update from 8.0.0704 to 8.0.0738
[termux-packages] / packages / vim / build.sh
1 TERMUX_PKG_DESCRIPTION="Vi IMproved - enhanced vi editor"
2 TERMUX_PKG_HOMEPAGE=http://www.vim.org/
3 TERMUX_PKG_DEPENDS="ncurses, vim-runtime"
4
5 # Vim 8.0 patches described at ftp://ftp.vim.org/pub/vim/patches/8.0/README
6 TERMUX_PKG_VERSION=8.0.0738
7 TERMUX_PKG_SHA256=30a3675a374bfc0f1f37a366aa6fb24e0aabec29935d70878258325c6cd0b8ec
8 TERMUX_PKG_SRCURL="https://github.com/vim/vim/archive/v${TERMUX_PKG_VERSION}.tar.gz"
9 TERMUX_PKG_FOLDERNAME=vim-${TERMUX_PKG_VERSION}
10 TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
11 vim_cv_getcwd_broken=no
12 vim_cv_memmove_handles_overlap=yes
13 vim_cv_stat_ignores_slash=no
14 vim_cv_terminfo=yes
15 vim_cv_tgent=zero
16 vim_cv_toupper_broken=no
17 vim_cv_tty_group=world
18 --enable-gui=no
19 --enable-multibyte
20 --with-features=huge
21 --without-x
22 --with-tlib=ncursesw
23 "
24 TERMUX_PKG_BUILD_IN_SRC="yes"
25 TERMUX_PKG_RM_AFTER_INSTALL="
26 bin/rview
27 bin/rvim
28 bin/ex
29 share/man/man1/evim.1
30 share/icons
31 share/vim/vim80/spell/en.ascii*
32 share/vim/vim80/print
33 share/vim/vim80/tools
34 "
35 TERMUX_PKG_CONFFILES="share/vim/vimrc"
36
37 TERMUX_PKG_CONFLICTS="vim-python"
38
39 termux_step_pre_configure () {
40 make distclean
41
42 # Remove eventually existing symlinks from previous builds so that they get re-created
43 for b in rview rvim ex view vimdiff; do rm -f $TERMUX_PREFIX/bin/$b; done
44 rm -f $TERMUX_PREFIX/share/man/man1/view.1
45 }
46
47 termux_step_post_make_install () {
48 cp $TERMUX_PKG_BUILDER_DIR/vimrc $TERMUX_PREFIX/share/vim/vimrc
49
50 # Remove most tutor files:
51 cp $TERMUX_PREFIX/share/vim/vim80/tutor/{tutor,tutor.vim,tutor.utf-8} $TERMUX_PKG_TMPDIR/
52 rm -f $TERMUX_PREFIX/share/vim/vim80/tutor/*
53 cp $TERMUX_PKG_TMPDIR/{tutor,tutor.vim,tutor.utf-8} $TERMUX_PREFIX/share/vim/vim80/tutor/
54
55 cd $TERMUX_PREFIX/bin
56 ln -f -s vim vi
57 }