Updated to `Lua 5.4.4`
This commit is contained in:
parent
86d897d580
commit
b65c5f84df
|
@ -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
|
|
@ -0,0 +1,4 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# Put 'export' statements here for environment variables
|
||||||
|
export PATH="$PWD/lua-5.4.4/src:$PATH"
|
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
"language": "lua",
|
||||||
|
"version": "5.4.4",
|
||||||
|
"aliases": []
|
||||||
|
}
|
|
@ -0,0 +1,4 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# Put instructions to run the runtime
|
||||||
|
lua "$@"
|
|
@ -0,0 +1 @@
|
||||||
|
print("OK")
|
Loading…
Reference in New Issue