-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkiwi-scm-1.rockspec
40 lines (39 loc) · 1.16 KB
/
kiwi-scm-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
39
40
rockspec_format = "3.0"
package = "kiwi"
version = "scm-1"
source = {
url = "git+https://github.com/jkl1337/ljkiwi",
}
description = {
summary = "LuaJIT FFI and Lua binding for C++ and Rust kiwi constraint solvers.",
detailed = [[
kiwi is a LuaJIT FFI and Lua binding for the Kiwi constraint solver with support
for both Rust and C++ implementations. Kiwi is a fast implementation of the Cassowary
constraint solving algorithm. The kiwi package provides reasonably efficient bindings
using the LuaJIT FFI and convential Lua C bindings.]],
license = "MIT",
issues_url = "https://github.com/jkl1337/ljkiwi/issues",
maintainer = "John Luebs",
}
dependencies = {
"lua >= 5.1",
}
build = {
type = "make",
build_variables = {
LUAROCKS = "1",
LUA = "$(LUA)",
CFLAGS = "$(CFLAGS)",
LUA_INCDIR = "$(LUA_INCDIR)",
LUA_LIBDIR = "$(LUA_LIBDIR)",
LUALIB = "$(LUALIB)",
LIBFLAG = "$(LIBFLAG)",
LIB_EXT = "$(LIB_EXTENSION)",
OBJ_EXT = "$(OBJ_EXTENSION)",
},
install_variables = {
INST_LIBDIR = "$(LIBDIR)",
INST_LUADIR = "$(LUADIR)",
LIB_EXT = "$(LIB_EXTENSION)",
},
}