mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-25 14:36:28 +02:00
added luau package
This commit is contained in:
parent
a965df2eb9
commit
29bda46403
5 changed files with 25 additions and 0 deletions
11
packages/luau/0.511/build.sh
vendored
Executable file
11
packages/luau/0.511/build.sh
vendored
Executable file
|
@ -0,0 +1,11 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Put instructions to build your package in here
|
||||
curl -R -O -L "https://github.com/Roblox/luau/archive/refs/tags/0.511.tar.gz"
|
||||
tar zxf 0.511.tar.gz
|
||||
rm 0.511.tar.gz
|
||||
|
||||
cd luau-0.511
|
||||
make config=release luau
|
||||
cd ..
|
||||
|
4
packages/luau/0.511/environment
vendored
Normal file
4
packages/luau/0.511/environment
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Put 'export' statements here for environment variables
|
||||
export PATH=$PWD/luau-0.511/build/release:$PATH
|
5
packages/luau/0.511/metadata.json
vendored
Normal file
5
packages/luau/0.511/metadata.json
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"language": "luau",
|
||||
"version": "0.511",
|
||||
"aliases": ["luau"]
|
||||
}
|
4
packages/luau/0.511/run
vendored
Normal file
4
packages/luau/0.511/run
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Put instructions to run the runtime
|
||||
./luau "$@"
|
1
packages/luau/0.511/test.luau
vendored
Normal file
1
packages/luau/0.511/test.luau
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
print("test")
|
Loading…
Add table
Add a link
Reference in a new issue