blob: 4da7390d9eb3cf09dcaa64550ace36eb37a220c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
return {
url = "https://github.com/commonmark/cmark",
targets = {
default = {
build = function()
os.execute("make INSTALL_PREFIX="..prefix)
end,
install = function()
os.execute("make install INSTALL_PREFIX="..prefix)
end,
uninstall = function()
os.execute("make uninstall INSTALL_PREFIX="..prefix)
end,
}
}
}
|