mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-24 13:54:19 +08:00
18 lines
278 B
TOML
18 lines
278 B
TOML
[source]
|
|
git = "https://github.com/luvit/luv.git"
|
|
[build]
|
|
template = "custom"
|
|
dependencies = [
|
|
"libuv",
|
|
"luajit"
|
|
]
|
|
script = """
|
|
DYNAMIC_INIT
|
|
COOKBOOK_CMAKE_FLAGS+=(
|
|
-DWITH_LUA_ENGINE=Luajit
|
|
-DLUA_BUILD_TYPE=System
|
|
-DWITH_SHARED_LIBUV=On
|
|
)
|
|
cookbook_cmake
|
|
"""
|