/rockspec
http://github.com/keplerproject/luarocks · #! · 38 lines · 34 code · 4 blank · 0 comment · 0 complexity · 79e67c1a2df6ec7e96a9fc751922689d MD5 · raw file
- package = "LuaRocks"
- local VER = "scm"
- version = VER .. "-1"
- source = {
- url = "--this rockspec is used by `make bootstrap` only--",
- }
- description = {
- summary = "A deployment and management system for Lua modules.",
- detailed = [[
- LuaRocks allows you to install Lua modules as self-contained
- packages called "rocks", which also contain version dependency
- information. This information is used both during installation,
- so that when one rock is requested all rocks it depends on are
- installed as well, and at run time, so that when a module is
- required, the correct version is loaded. LuaRocks supports both
- local and remote repositories, and multiple local rocks trees.
- ]],
- license = "MIT/X11",
- homepage = "http://www.luarocks.org",
- maintainer = "Hisham Muhammad"
- }
- dependencies = {
- "lua >= 5.1"
- }
- build = {
- type = "make",
- install_target = "install_rock",
- build_pass=false,
- install_variables = {
- BINDIR="$(BINDIR)",
- LUADIR="$(LUADIR)",
- LUA="$(LUA)",
- }
- }