mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-21 20:34:17 +08:00
19 lines
369 B
TOML
19 lines
369 B
TOML
[source]
|
|
git = "https://github.com/luarocks/luarocks.git"
|
|
[build]
|
|
template = "custom"
|
|
dependencies = [
|
|
"lua54"
|
|
]
|
|
script = """
|
|
|
|
COOKBOOK_CONFIGURE_FLAGS=(
|
|
--sysconfdir=$COOKBOOK_SYSROOT
|
|
--with-lua-include=$COOKBOOK_SYSROOT/include
|
|
--with-lua-bin=$COOKBOOK_SYSROOT/bin
|
|
--with-lua-lib=$COOKBOOK_SYSROOT/lib
|
|
)
|
|
cd "${COOKBOOK_SOURCE}"
|
|
cookbook_configure
|
|
"""
|