blob: 26ba432f43183627259c3f6cd762fd4658faf100 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
return {
url = "https://git.bwaaa.monster/cmommy",
targets = {
default = {
build = function()
os.execute("make")
end,
install = function()
os.execute("cp ./bin/mommy "..install_directories.bin)
end,
uninstall = function()
os.execute("rm "..install_directories.bin.."/mommy")
end,
},
},
}
|