Skip to content

Commit

Permalink
use vim9 as alternate name
Browse files Browse the repository at this point in the history
- avoid hard coded specific version
- use 9 instead of 91 as specific version
  • Loading branch information
hgy59 committed Jan 17, 2025
1 parent 1a5c927 commit db82735
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cross/vim/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PKG_EXT = tar.gz
PKG_DIST_NAME = v$(PKG_VERS).$(PKG_EXT)
PKG_DIST_SITE = https://github.com/vim/vim/archive
PKG_DIST_FILE = $(PKG_NAME)-$(PKG_VERS).$(PKG_EXT)
SPECIFIC_VERSION=91
SPECIFIC_VERSION=$(firstword $(subst ., ,$(PKG_VERS)))
PKG_DIR = $(PKG_NAME)-$(PKG_VERS)

DEPENDS = cross/ncursesw
Expand Down
3 changes: 2 additions & 1 deletion spk/vim/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ CHANGELOG = "1. Update vim to v9.1. <br/>2. Finally remove python feature."
HOMEPAGE = https://www.vim.org/
LICENSE = Charityware

SPK_COMMANDS = bin/vim bin/vim$(subst .,,$(SPK_VERS)) bin/view bin/vimdiff bin/rvim bin/rview bin/vimtutor
SPK_COMMANDS = bin/vim bin/vim$(firstword $(subst ., ,$(PKG_VERS)))
SPK_COMMANDS += bin/view bin/vimdiff bin/rvim bin/rview bin/vimtutor

include ../../mk/spksrc.spk.mk

0 comments on commit db82735

Please sign in to comment.