1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 14:57:35 +00:00

Ports/lua: Update to Lua 5.4

This commit is contained in:
Tim Schumacher 2022-06-24 21:50:06 +02:00 committed by Linus Groh
parent 3beb7fc42f
commit 3c43ac9eb5
3 changed files with 27 additions and 26 deletions

View file

@ -1,8 +1,17 @@
#!/usr/bin/env -S bash ../.port_include.sh
port=lua
version=5.3.6
files="http://www.lua.org/ftp/lua-${version}.tar.gz lua-${version}.tar.gz fc5fd69bb8736323f026672b1b7235da613d7177e72558893a0bdcd320466d60"
port='lua'
version='5.4.4'
files="http://www.lua.org/ftp/lua-${version}.tar.gz lua-${version}.tar.gz 164c7849653b80ae67bec4b7473b884bf5cc8d2dca05653475ec2ed27b9ebf61"
depends=("readline")
auth_type=sha256
makeopts=("-Csrc/" "-j$(nproc)" "serenity" "CC=${CC}" "AR=${AR}" "RANLIB=${RANLIB}" )
installopts=("INSTALL_TOP=${SERENITY_INSTALL_ROOT}/usr/local")
auth_type='sha256'
makeopts=(
"-Csrc/"
"-j$(nproc)"
"serenity"
"CC=${CC}"
"AR=${AR}"
"RANLIB=${RANLIB}"
)
installopts=(
"INSTALL_TOP=${SERENITY_INSTALL_ROOT}/usr/local"
)