/rockspec

http://github.com/keplerproject/luarocks · #! · 38 lines · 34 code · 4 blank · 0 comment · 0 complexity · 79e67c1a2df6ec7e96a9fc751922689d MD5 · raw file

  1. package = "LuaRocks"
  2. local VER = "scm"
  3. version = VER .. "-1"
  4. source = {
  5. url = "--this rockspec is used by `make bootstrap` only--",
  6. }
  7. description = {
  8. summary = "A deployment and management system for Lua modules.",
  9. detailed = [[
  10. LuaRocks allows you to install Lua modules as self-contained
  11. packages called "rocks", which also contain version dependency
  12. information. This information is used both during installation,
  13. so that when one rock is requested all rocks it depends on are
  14. installed as well, and at run time, so that when a module is
  15. required, the correct version is loaded. LuaRocks supports both
  16. local and remote repositories, and multiple local rocks trees.
  17. ]],
  18. license = "MIT/X11",
  19. homepage = "http://www.luarocks.org",
  20. maintainer = "Hisham Muhammad"
  21. }
  22. dependencies = {
  23. "lua >= 5.1"
  24. }
  25. build = {
  26. type = "make",
  27. install_target = "install_rock",
  28. build_pass=false,
  29. install_variables = {
  30. BINDIR="$(BINDIR)",
  31. LUADIR="$(LUADIR)",
  32. LUA="$(LUA)",
  33. }
  34. }