Skip to content

Instantly share code, notes, and snippets.

@mildred
Last active August 29, 2015 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mildred/dbb883d39f66d802340b to your computer and use it in GitHub Desktop.
Save mildred/dbb883d39f66d802340b to your computer and use it in GitHub Desktop.
subprocess.rockspec
package = "subprocess"
version = "0.02-1"
source = {
url = "git://github.com/mildred/lua-subprocess.git"
}
description = {
summary = "Subprocess module for Lua",
detailed = [[
]],
homepage = "https://github.com/xlq/lua-subprocess",
license = "?"
}
dependencies = {
"lua >= 5.2"
}
build = {
type = "builtin",
modules = {
["subprocess"] = {
sources = {"subprocess.c", "liolib-copy.c"},
defines = {"OS_POSIX"}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment