blob: 3e2d473b3e0b4182867fa3bb6de98426529424c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
return {
url = "https://github.com/git/git",
targets = {
default = {
build = function()
return os.execute("make NO_REGEX=NeedsStartEnd prefix="..prefix)
end,
install = function()
return os.execute("make NO_REGEX=NeedsStartEnd install prefix="..prefix)
end,
on_update = function()
return os.execute("echo 'HEYHEYHEYHEYHEYHEYHEY IT WORKED (git)'")
end,
uninstall = function()
return os.execute("make NO_REGEX=NeedsStartEnd install prefix="..prefix)
end,
},
},
}
|