-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfr-0.1.1-1.rockspec
38 lines (37 loc) · 1.09 KB
/
fr-0.1.1-1.rockspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package = "fr"
version = "0.1.1-1"
source = {
url = "git://github.com/aiverson/frlua.git"
}
description = {
summary = "Functional Reactive programming capabilities in Lua.",
detailed = [[FRLua is a library inspired by Bacon.js to provide Functional Reactive programming capabilities in Lua.
It is targeted at luajit 2.1 and lua >=5.1 <5.4.
It is currently implemented in pure lua.
This package uses semver.]],
homepage = "https://github.com/aiverson/frlua",
license = "MIT",
maintainer = "Alex Iverson <[email protected]>"
}
dependencies = {
"lua >= 5.1, < 5.4"
}
build = {
type = "builtin",
modules = {
fr = "fr.lua",
["fr.bus"] = "fr/bus.lua",
["fr.combineTemplate"] = "fr/combineTemplate.lua",
["fr.eventStream"] = "fr/eventStream.lua",
["fr.fromTable"] = "fr/fromTable.lua",
["fr.functionTools"] = "fr/functionTools.lua",
["fr.isObservable"] = "fr/isObservable.lua",
["fr.never"] = "fr/never.lua",
["fr.once"] = "fr/once.lua",
["fr.property"] = "fr/property.lua",
["fr.repeat"] = "fr/repeat.lua",
},
copy_directories = {
"tests"
}
}