package = "lua-lstat"
version = "0.1.0-1"

source = {
   url = "https://github.com/gmiossec/lua-lstat/archive/0.1.0.tar.gz",
   tag = "0.1.0",
   file = "lua-lstat-0.1.0.tar.gz"
}

description = {
    summary = "Wrapper around lstat() system call",
    detailed = [[
	lua-lstat returns some system informations based on the lstat() system call.
	It cans return disk (mount point) and memory usage and, system uptime.
    ]],
    license = "WTFPL",
}

dependencies = {
    "lua >= 5.1, < 5.3"
}

build = {
    type = "builtin",
    modules = {
	lstat = {
	    sources = { "lua-lstat.c" }
	}
    },
}
