diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2024-01-21 06:28:50 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2024-01-21 06:32:10 +0100 |
commit | 2e396244c14cb61d37c30eb63685b67bbeebcb25 (patch) | |
tree | cfd444263409c45f33431cefcf0c8691f0c8fcbc /package/vim | |
parent | ef81f9c6846cde1620a0e9a04155eba2e34cb67a (diff) |
vim: update to 9.1.0041
Diffstat (limited to 'package/vim')
-rw-r--r-- | package/vim/Makefile | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/package/vim/Makefile b/package/vim/Makefile index 3cf92eab3..7169cf883 100644 --- a/package/vim/Makefile +++ b/package/vim/Makefile @@ -4,18 +4,19 @@ include ${ADK_TOPDIR}/rules.mk PKG_NAME:= vim -PKG_VERSION:= 8.2 +PKG_VERSION:= 9.1 +PKG_EXTRAVER:= 0041 PKG_RELEASE:= 1 -PKG_HASH:= f087f821831b4fece16a0461d574ccd55a8279f64d635510a1e10225966ced3b +PKG_HASH:= 1531eb2f9a42e3e5a0c5579e26d9a376bd85f7062701c727af482d8597c59592 PKG_DESCR:= very popular text editor PKG_SECTION:= app/editor PKG_DEPENDS:= libncurses PKG_BUILDDEP:= ncurses PKG_URL:= http://www.vim.org/ -PKG_SITES:= ftp://ftp.vim.org/pub/vim/unix/ +PKG_SITES:= https://github.com/vim/vim/archive/refs/tags/ -DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2 -WRKDIST= ${WRKDIR}/vim82 +DISTFILES:= v${PKG_VERSION}.${PKG_EXTRAVER}.tar.gz +WRKDIST= ${WRKDIR}/$(PKG_NAME)-$(PKG_VERSION).$(PKG_EXTRAVER) WRKSRC= ${WRKDIST}/src include ${ADK_TOPDIR}/mk/package.mk @@ -40,10 +41,7 @@ CONFIGURE_ARGS+= --disable-darwin \ --disable-tclinterp \ --disable-rubyinterp \ --disable-cscope \ - --disable-workshop \ --disable-netbeans \ - --disable-sniff \ - --disable-hangulinput \ --disable-xim \ --disable-fontset \ --disable-gui \ @@ -61,9 +59,9 @@ vim-install: ${INSTALL_DIR} ${IDIR_VIM}/usr/bin ${INSTALL_DIR} ${IDIR_VIM}/usr/share/vim ${CP} ${WRKINST}/usr/bin/{ex,vim,view} ${IDIR_VIM}/usr/bin - ${CP} ${WRKINST}/usr/share/vim/vim82/defaults.vim \ + ${CP} ${WRKINST}/usr/share/vim/vim91/defaults.vim \ ${IDIR_VIM}/usr/share/vim/ - ${CP} ${WRKINST}/usr/share/vim/vim82/vimrc_example.vim \ + ${CP} ${WRKINST}/usr/share/vim/vim91/vimrc_example.vim \ ${IDIR_VIM}/usr/share/vim/vimrc include ${ADK_TOPDIR}/mk/pkg-bottom.mk |