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
|
package = "luaffi"
version = "scm-1"
source = {
url = "git://github.com/facebook/luaffifb.git",
}
description = {
summary = "FFI library for calling C functions from lua",
detailed = [[
]],
homepage = "https://github.com/facebook/luaffifb",
license = "BSD"
}
dependencies = {
"lua >= 5.1",
}
build = {
type = "builtin",
modules = {
['ffi'] = {
incdirs = {
"dynasm"
},
sources = {
"call.c", "ctype.c", "ffi.c", "parser.c",
}
},
['ffi.libtest'] = 'test.c',
['ffi.test'] = 'test.lua',
}
}
|