Skip to content

Commit 340e025

Browse files
committed
Add rockspec file
1 parent e4e9f3b commit 340e025

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

luasm-0.1-1.rockspec

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
package = "LuASM"
2+
version = "0.1-1"
3+
4+
source = {
5+
url = "git+https://github.com/QuickWrite/luasm.git",
6+
branch = "main"
7+
}
8+
9+
description = {
10+
summary = "A library to parse and execute custom ASM.",
11+
detailed = "A library to parse and execute custom ASM. It is a light-weight Lua library that lets you define, parse and later execute a custom assembly-like language. And the library is deliberately minimal.",
12+
homepage = "https://github.com/QuickWrite/luasm",
13+
license = "MIT"
14+
}
15+
16+
dependencies = {
17+
"lua >= 5.1",
18+
}
19+
20+
build = {
21+
type = "builtin",
22+
modules = {
23+
luasm = "src/luasm.lua"
24+
}
25+
}

0 commit comments

Comments
 (0)