mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-21 20:34:17 +08:00
Merge branch 'master' of https://gitlab.redox-os.org/redox-os/cookbook
This commit is contained in:
commit
f59ef6c91b
@ -11,7 +11,5 @@ rsync -av --delete "${COOKBOOK_SOURCE}/" ./
|
||||
CC="${TARGET}-gcc -std=gnu99" \
|
||||
RANLIB="${TARGET}-ranlib" \
|
||||
SYSLDFLAGS="-static" \
|
||||
generic
|
||||
mkdir -pv "${COOKBOOK_STAGE}/bin"
|
||||
cp src/lua src/luac "${COOKBOOK_STAGE}/bin"
|
||||
install INSTALL_TOP="${COOKBOOK_STAGE}"
|
||||
"""
|
||||
|
||||
18
recipes/dev/luarocks/recipe.toml
Normal file
18
recipes/dev/luarocks/recipe.toml
Normal file
@ -0,0 +1,18 @@
|
||||
[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
|
||||
"""
|
||||
11
recipes/libs/lua-compat-5.3/recipe.toml
Normal file
11
recipes/libs/lua-compat-5.3/recipe.toml
Normal file
@ -0,0 +1,11 @@
|
||||
[source]
|
||||
git = "https://github.com/lunarmodules/lua-compat-5.3.git"
|
||||
[build]
|
||||
template = "custom"
|
||||
dependencies = [
|
||||
"lua54"
|
||||
]
|
||||
script = """
|
||||
mkdir -pv "${COOKBOOK_STAGE}/include"
|
||||
cp -r "$COOKBOOK_SOURCE/c-api/." "${COOKBOOK_STAGE}/include"
|
||||
"""
|
||||
27
recipes/libs/luv/recipe.toml
Normal file
27
recipes/libs/luv/recipe.toml
Normal file
@ -0,0 +1,27 @@
|
||||
[source]
|
||||
git = "https://github.com/luvit/luv.git"
|
||||
[build]
|
||||
template = "custom"
|
||||
dependencies = [
|
||||
"lua54",
|
||||
"libuv",
|
||||
"lua-compat-5.3"
|
||||
]
|
||||
script = """
|
||||
COOKBOOK_CONFIGURE="cmake"
|
||||
COOKBOOK_CONFIGURE_FLAGS=(
|
||||
-DBUILD_MODULE=OFF
|
||||
-DBUILD_STATIC_LIBS=ON
|
||||
-DWITH_SHARED_LIBUV=ON
|
||||
-DWITH_LUA_ENGINE=Lua
|
||||
-DLUA_BUILD_TYPE=System
|
||||
-DLUA_COMPAT53_DIR="${COOKBOOK_SYSROOT}/bin"
|
||||
-DCMAKE_BUILD_TYPE=RelWithDebInfo
|
||||
-DLIBUV_LIBRARIES="${COOKBOOK_SYSROOT}/usr/lib/libuv.a"
|
||||
-DLIBUV_INCLUDE_DIR="${COOKBOOK_SYSROOT}/usr/include"
|
||||
-DLUA_INCLUDE_DIR="${COOKBOOK_SYSROOT}/include"
|
||||
-DLUV_INCLUDE_DIR="${COOKBOOK_SYSROOT}/include"
|
||||
"${COOKBOOK_SOURCE}"
|
||||
)
|
||||
cookbook_configure
|
||||
"""
|
||||
@ -1,6 +0,0 @@
|
||||
#TODO not compiled or tested
|
||||
# build instructions - https://github.com/luarocks/luarocks/wiki/Installation-instructions-for-Unix
|
||||
[source]
|
||||
tar = "https://luarocks.org/releases/luarocks-3.11.1.tar.gz"
|
||||
[build]
|
||||
template = "configure"
|
||||
Loading…
Reference in New Issue
Block a user