Open
Description
A somewhat common thing to do is having post-install hooks. Maybe it could be included in the spec?
A couple of ideas for the syntax (not 100% sure about the name make
):
make = "./configure && make"
-- multiline string, maybe should work just like makefiles?
make = [[
./configure
make
]]
-- same, but as an array
make = {
"./configure",
"make",
}
-- platform specific
make = {
linux = "./configure && make",
win = "...",
["*"] = "...", -- wildcard for all platforms?
["linux,mac"] = "...", -- or just autocmd-like syntax
}
-- maybe vim commands too, but not sure about it being
-- shared as the same field with shell commands
make = ":UpdateRemotePlugins"
Metadata
Metadata
Assignees
Labels
No labels