From ee3f3e76798767c13a4db13e153804a75483e037 Mon Sep 17 00:00:00 2001 From: Josh Megnauth Date: Sun, 1 Dec 2024 21:57:09 -0500 Subject: [PATCH] Fix and bump lua54 --- recipes/dev/lua54/recipe.toml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/recipes/dev/lua54/recipe.toml b/recipes/dev/lua54/recipe.toml index fb52321a3..5f2f15492 100644 --- a/recipes/dev/lua54/recipe.toml +++ b/recipes/dev/lua54/recipe.toml @@ -1,15 +1,16 @@ [source] -tar = "https://www.lua.org/ftp/lua-5.4.4.tar.gz" -blake3 = "ca54489393cd38e35d295a9c35dbf0da5336a66ddb7b2213eed6c2f3039f53b1" +tar = "https://lua.org/ftp/lua-5.4.7.tar.gz" +blake3 = "e51c2f347e3185479d5ff95cae8ac77511db486853269443c56bedaa0a6ae629" [build] template = "custom" script = """ rsync -av --delete "${COOKBOOK_SOURCE}/" ./ -"${COOKBOOK_MAKE}" -j"${COOKBOOK_MAKE_JOBS}" \ +"${COOKBOOK_MAKE}" -j"${COOKBOOK_MAKE_JOBS}" posix \ AR="${TARGET}-ar rcu" \ CC="${TARGET}-gcc -std=gnu99" \ RANLIB="${TARGET}-ranlib" \ - SYSLDFLAGS="-static" \ - install INSTALL_TOP="${COOKBOOK_STAGE}" + SYSLDFLAGS="-static" + +"${COOKBOOK_MAKE}" install INSTALL_TOP="${COOKBOOK_STAGE}" """