aboutsummaryrefslogtreecommitdiff
path: root/.config/pkgit/repos/ssuika.lua
blob: 3611b2aa9c5f7c9d83f16228289825e888d6e2ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
return {
	url = "https://codeberg.org/nzuum/ssuika",
	targets = {
		default = {
			build = function()
				os.execute("make")
			end,
			install = function()
				os.execute("cp bin/ssuika "..install_directories.bin)
			end,
			uninstall = function()
				os.execute("rm "..install_directories.bin.."/ssuika")
			end,
		}
	}
}