Fredrik Fornwall
9 years ago
6 changed files with 94 additions and 0 deletions
@ -0,0 +1,37 @@ |
|||
TERMUX_PKG_DESCRIPTION="Vi IMproved - enhanced vi editor" |
|||
TERMUX_PKG_HOMEPAGE=http://www.vim.org/ |
|||
TERMUX_PKG_DEPENDS="ncurses, vim-runtime" |
|||
|
|||
# Vim 7.4 patches described at ftp://ftp.vim.org/pub/vim/patches/7.4/README |
|||
TERMUX_PKG_VERSION=7.4.865 |
|||
TERMUX_PKG_SRCURL="https://github.com/vim/vim/archive/v${TERMUX_PKG_VERSION}.tar.gz" |
|||
TERMUX_PKG_FOLDERNAME=vim-${TERMUX_PKG_VERSION} |
|||
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="vim_cv_toupper_broken=no vim_cv_terminfo=yes vim_cv_tty_group=world" |
|||
TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" vim_cv_getcwd_broken=no vim_cv_stat_ignores_slash=no vim_cv_memmove_handles_overlap=yes" |
|||
TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" --with-tlib=ncursesw --enable-multibyte --without-x --enable-gui=no --disable-darwin --with-features=huge" |
|||
TERMUX_PKG_BUILD_IN_SRC="yes" |
|||
TERMUX_PKG_RM_AFTER_INSTALL='bin/rview bin/rvim bin/ex share/man/man1/evim.1 share/icons share/vim/vim74/spell/en.ascii* share/vim/vim74/spell/en.latin1* share/vim/vim74/print share/vim/vim74/tools' |
|||
|
|||
# vim-python: |
|||
TERMUX_PKG_DEPENDS+=", python" |
|||
TERMUX_PKG_CONFLICTS="vim" |
|||
CPPFLAGS+=" -I${TERMUX_PREFIX}/include/python3.5m" |
|||
TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" --enable-python3interp --with-python3-config-dir=$TERMUX_PREFIX/lib/python3.5/config-3.5m/" |
|||
TERMUX_PKG_DESCRIPTION+=" - with python support" |
|||
|
|||
termux_step_pre_configure () { |
|||
make distclean |
|||
|
|||
# Remove eventually existing symlinks from previous builds so that they get re-created |
|||
for b in rview rvim ex view vimdiff; do rm -f $TERMUX_PREFIX/bin/$b; done |
|||
rm -f $TERMUX_PREFIX/share/man/man1/view.1 |
|||
} |
|||
|
|||
termux_step_post_make_install () { |
|||
cp $TERMUX_PKG_BUILDER_DIR/vimrc $TERMUX_PREFIX/share/vim/vimrc |
|||
|
|||
# Remove most tutor files: |
|||
cp $TERMUX_PREFIX/share/vim/vim74/tutor/tutor.{vim,utf-8} $TERMUX_PKG_TMPDIR/ |
|||
rm -f $TERMUX_PREFIX/share/vim/vim74/tutor/* |
|||
cp $TERMUX_PKG_TMPDIR/tutor.{vim,utf-8} $TERMUX_PREFIX/share/vim/vim74/tutor/ |
|||
} |
@ -0,0 +1,12 @@ |
|||
diff -u -r ../cache/vim-hg/src/option.c ./src/option.c
|
|||
--- ../cache/vim-hg/src/option.c 2014-12-29 03:45:05.848110254 -0500
|
|||
+++ ./src/option.c 2015-01-01 15:57:05.028319916 -0500
|
|||
@@ -3173,7 +3173,7 @@
|
|||
mustfree = FALSE; |
|||
# ifdef UNIX |
|||
if (*names[n] == NUL) |
|||
- p = (char_u *)"/tmp";
|
|||
+ p = (char_u *)"@TERMUX_PREFIX@/tmp";
|
|||
else |
|||
# endif |
|||
p = vim_getenv((char_u *)names[n], &mustfree); |
@ -0,0 +1,12 @@ |
|||
diff -u -r ../cache/vim-hg/src/os_unix.h ./src/os_unix.h
|
|||
--- ../cache/vim-hg/src/os_unix.h 2014-12-29 03:45:05.856110254 -0500
|
|||
+++ ./src/os_unix.h 2015-01-01 15:57:52.364319949 -0500
|
|||
@@ -399,7 +399,7 @@
|
|||
# ifdef VMS |
|||
# define DFLT_DIR "./,sys$login:,tmp:" |
|||
# else |
|||
-# define DFLT_DIR ".,~/tmp,/var/tmp,/tmp" /* default for 'directory' */
|
|||
+# define DFLT_DIR ".,~/tmp,@TERMUX_PREFIX@/var/tmp,@TERMUX_PREFIX@/tmp" /* default for 'directory' */
|
|||
# endif |
|||
# endif |
|||
#endif |
@ -0,0 +1,3 @@ |
|||
TERMUX_SUBPKG_INCLUDE="share/vim/vim74" |
|||
TERMUX_SUBPKG_DESCRIPTION="Vi IMproved - Runtime files" |
|||
TERMUX_SUBPKG_PLATFORM_INDEPENDENT=yes |
@ -0,0 +1,18 @@ |
|||
set autowrite |
|||
set backspace=2 |
|||
set hlsearch |
|||
set ignorecase |
|||
set incsearch |
|||
set mouse=a |
|||
set nocompatible |
|||
set smartcase |
|||
set smartindent |
|||
set title |
|||
|
|||
syntax on |
|||
|
|||
" Scroll only one line for mouse wheel events to get smooth scrolling on touch screens |
|||
map <ScrollWheelUp> <C-Y> |
|||
imap <ScrollWheelUp> <C-X><C-Y> |
|||
map <ScrollWheelDown> <C-E> |
|||
imap <ScrollWheelDown> <C-X><C-E> |
@ -0,0 +1,12 @@ |
|||
diff -u -r ../cache/vim-hg/src/vimtutor ./src/vimtutor
|
|||
--- ../cache/vim-hg/src/vimtutor 2014-05-30 17:16:01.677978089 +0200
|
|||
+++ ./src/vimtutor 2014-06-15 23:36:24.545163147 +0200
|
|||
@@ -24,7 +24,7 @@
|
|||
export xx |
|||
|
|||
# We need a temp file for the copy. First try using a standard command. |
|||
-tmp="${TMPDIR-/tmp}"
|
|||
+tmp="${TMPDIR-@TERMUX_PREFIX@/tmp}"
|
|||
TUTORCOPY=`mktemp $tmp/tutorXXXXXX || tempfile -p tutor || echo none` |
|||
|
|||
# If the standard commands failed then create a directory to put the copy in. |
Loading…
Reference in new issue