10 lines
244 B
Bash
Executable File
10 lines
244 B
Bash
Executable File
#!/bin/zsh
|
|
|
|
local lua_package="lua5.1"
|
|
[[ "$BOX_SETUP_OS" = "macos" ]] && lua_package="lua@5.1"
|
|
|
|
${=BOX_SETUP_INSTALL_COMMAND} "$lua_package" liblua5.1-0-dev
|
|
|
|
# TODO: review and decide if the things below are needed
|
|
# luarocks install luacheck
|