forked from rosa/hakurei
31 lines
519 B
Go
31 lines
519 B
Go
package vim {
|
|
description = "a greatly improved version of the good old UNIX editor Vi"
|
|
website = "https://www.vim.org"
|
|
anitya = 5092
|
|
|
|
version := "9.2.0461"
|
|
source = remoteGitHub {
|
|
suffix = "vim/vim"
|
|
tag = "v"+version
|
|
checksum = "18Rr_5oIf_PkKuqVkN4CMZIGkZEgpN1vamlrsvPLBjn4mN98CRuoJmhzRZ7MoVYM"
|
|
}
|
|
|
|
writable
|
|
chmod
|
|
enterSource
|
|
|
|
exec = make {
|
|
inPlace
|
|
configure = [
|
|
"with-tlib": "ncursesw"
|
|
]
|
|
check = [ "test" ]
|
|
|
|
// very expensive
|
|
skipCheck
|
|
}
|
|
|
|
inputs = [ ncurses ]
|
|
runtime = [ ncurses ]
|
|
}
|