Updated to Lua 5.4.4

This commit is contained in:
RVG|lory 2023-04-08 11:58:48 +02:00 committed by GitHub
parent 86d897d580
commit b65c5f84df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 28 additions and 0 deletions

14
packages/lua/5.4.4/build.sh vendored Normal file
View file

@ -0,0 +1,14 @@
#!/usr/bin/env bash
# Put instructions to build your package in here
curl -R -O -L http://www.lua.org/ftp/lua-5.4.4.tar.gz
tar zxf lua-5.4.4.tar.gz
rm lua-5.4.4.tar.gz
cd lua-5.4.4
# Building Lua
make linux
# To check that Lua has been built correctly
make test
# Installing Lua
make linux install