diff options
author | Brendan Coles <bcoles@gmail.com> | 2021-04-17 11:45:23 +0000 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-04-17 18:29:50 +0200 |
commit | 65a89ea67efa1663b8e94affcd257c960aef7b8d (patch) | |
tree | 18396048cdf4d9b17e9baf539ce504e448c7f755 /Ports/vim | |
parent | 4a2c0d721f5f8b2fba4355556e729c6f13f26b6c (diff) | |
download | serenity-65a89ea67efa1663b8e94affcd257c960aef7b8d.zip |
Ports: vim: Pin version to latest release rather than use master branch
Diffstat (limited to 'Ports/vim')
-rwxr-xr-x | Ports/vim/package.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Ports/vim/package.sh b/Ports/vim/package.sh index caf4b86a39..4d5ed13efa 100755 --- a/Ports/vim/package.sh +++ b/Ports/vim/package.sh @@ -1,9 +1,9 @@ #!/usr/bin/env -S bash ../.port_include.sh port=vim -version=git -workdir=vim-master +version=8.2.2772 +workdir="${port}-${version}" useconfigure="true" -files="https://github.com/vim/vim/archive/master.tar.gz vim-git.tar.gz 9f999815c6afc320612d55f93f0db67b" +files="https://github.com/vim/vim/archive/refs/tags/v${version}.tar.gz vim-v${version}.tar.gz 0dbd7323008c1d95d0396e119210630f" auth_type=md5 configopts="--with-tlib=tinfo --with-features=normal" depends="ncurses" |