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