Compare commits
No commits in common. "adf97a7df0799ce29a5c178a9c0cbc18761b1a57" and "d79b58add1386bece550c45f1c58c9d27247d2b0" have entirely different histories.
adf97a7df0
...
d79b58add1
|
@ -1,14 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Put instructions to build your package in here
|
||||
curl -R -O -L http://www.lua.org/ftp/lua-5.4.2.tar.gz
|
||||
tar zxf lua-5.4.2.tar.gz
|
||||
rm lua-5.4.2.tar.gz
|
||||
|
||||
cd lua-5.4.2
|
||||
# Building Lua
|
||||
make linux
|
||||
# To check that Lua has been built correctly
|
||||
make test
|
||||
# Installing Lua
|
||||
make linux install
|
|
@ -1,4 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Put 'export' statements here for environment variables
|
||||
export PATH="$PWD/lua-5.4.2/src:$PATH"
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"language": "lua",
|
||||
"version": "5.4.2",
|
||||
"author": "Shivansh-007 <Shivansh-007@users.noreply.github.com>",
|
||||
"aliases": ["lua"]
|
||||
}
|
|
@ -1,4 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Put instructions to run the runtime
|
||||
lua "$@"
|
|
@ -1 +0,0 @@
|
|||
print("OK")
|
Loading…
Reference in New Issue