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