Initial actual commit, awaiting CI

This commit is contained in:
2024-02-12 04:21:48 -06:00
parent 70a9213c91
commit 59bdeedc18
8 changed files with 1329 additions and 1 deletions

33
ljkiwi-scm-1.rockspec Normal file
View File

@@ -0,0 +1,33 @@
rockspec_format = "3.0"
package = "ljkiwi"
version = "scm-1"
source = {
url = "git+https://github.com/jkl1337/ljkiwi",
}
description = {
summary = "A LuaJIT FFI binding for the Kiwi constraint solver.",
detailed = [[
ljkiwi is a LuaJIT FFI binding for the Kiwi constraint solver. Kiwi is a fast
implementation of the Cassowary constraint solving algorithm. ljkiwi provides
reasonably efficient bindings using the LuaJIT FFI.]],
license = "MIT",
issues_url = "https://github.com/jkl1337/ljkiwi/issues",
maintainer = "John Luebs",
}
dependencies = {
"lua >= 5.1",
}
build = {
type = "make",
build_variables = {
CFLAGS = "$(CFLAGS)",
LIBFLAG = "$(LIBFLAG)",
LIB_EXT = "$(LIB_EXTENSION)",
OBJ_EXT = "$(OBJ_EXTENSION)",
},
install_variables = {
INST_LIBDIR = "$(LIBDIR)",
INST_LUADIR = "$(LUADIR)",
},
}