Skip to content

Commit 7258168

Browse files
committed
Add a rockspec file
1 parent 8862b41 commit 7258168

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

statemachine-1.0.0-1.rockspec

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
package = "statemachine"
2+
version = "1.0.0-1"
3+
source = {
4+
url = "https://github.com/kyleconroy/lua-state-machine/archive/v1.0.0.tar.gz",
5+
dir = "lua-state-machine-1.0.0"
6+
}
7+
description = {
8+
summary = "A finite state machine micro framework",
9+
detailed = [[
10+
This standalone module provides a finite state machine for your pleasure.
11+
]],
12+
homepage = "https://github.com/kyleconroy/lua-state-machine",
13+
license = "MIT/X11"
14+
}
15+
dependencies = {
16+
"lua >= 5.1"
17+
}
18+
build = {
19+
type = "builtin",
20+
modules = {
21+
["statemachine"] = "statemachine.lua"
22+
},
23+
copy_directories = {}
24+
}
25+

0 commit comments

Comments
 (0)