blob: 969554e60ee8f98a101d15dcd737295ea34d0f19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
return {
url = "https://github.com/resurrecting-open-source-projects/scrot",
targets = {
default = {
build = function()
return os.execute("./autogen.sh && ./configure --prefix="..prefix.." && make")
end,
install = function()
return os.execute("make install")
end,
}
}
}
|