mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-22 21:16:29 +02:00
14 lines
300 B
Bash
Executable file
14 lines
300 B
Bash
Executable file
#!/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
|