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