Skip to content
This repository was archived by the owner on Nov 20, 2020. It is now read-only.

Commit dbb9c3e

Browse files
author
Fabio Mascarenhas
committed
added rockspecs to source tree
1 parent 0b562ba commit dbb9c3e

File tree

2 files changed

+61
-0
lines changed

2 files changed

+61
-0
lines changed

rockspec/leg-0.1.2-1.rockspec

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
-- Package metadata
2+
package = 'Leg'
3+
version = '0.1.2-1'
4+
description = {
5+
summary = 'A Lua 5.1 grammar',
6+
detailed = [[
7+
Leg offers a complete Lua 5.1 grammar,
8+
along with a small API for user manipulation.
9+
]],
10+
license = 'MIT/X11',
11+
homepage = 'http://leg.luaforge.net/',
12+
}
13+
14+
-- Dependency information
15+
dependencies = {
16+
'lpeg >= 0.6',
17+
'lua >= 5.1',
18+
}
19+
20+
-- Build rules
21+
source = {
22+
url = 'http://luaforge.net/frs/download.php/2728/leg-0.1.2.tar.gz',
23+
dir = 'leg',
24+
}
25+
26+
build = {
27+
type = 'make',
28+
install_variables = {
29+
LUA_LIB = "$(LUADIR)",
30+
}
31+
}

rockspec/leg-scm-1.rockspec

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
-- Package metadata
2+
package = 'Leg'
3+
version = 'scm-1'
4+
description = {
5+
summary = 'A Lua 5.1 grammar',
6+
detailed = [[
7+
Leg offers a complete Lua 5.1 grammar,
8+
along with a small API for user manipulation.
9+
]],
10+
license = 'MIT/X11',
11+
homepage = 'http://leg.luaforge.net/',
12+
}
13+
14+
-- Dependency information
15+
dependencies = {
16+
'lpeg >= 0.6',
17+
'lua >= 5.1',
18+
}
19+
20+
-- Build rules
21+
source = {
22+
url = 'git://github.com/keplerproject/leg.git',
23+
}
24+
25+
build = {
26+
type = 'make',
27+
install_variables = {
28+
LUA_LIB = "$(LUADIR)",
29+
}
30+
}

0 commit comments

Comments
 (0)