From 51e68d06777e22370dc49e8e11cfa03f35e074b0 Mon Sep 17 00:00:00 2001 From: Rose Liverman Date: Sun, 18 Feb 2024 18:10:27 -0700 Subject: [PATCH] script to install lua5.1 on macos because brew broke it for no reason :D --- install-lua5.1-macos.sh | 5 +++++ 1 file changed, 5 insertions(+) create mode 100755 install-lua5.1-macos.sh diff --git a/install-lua5.1-macos.sh b/install-lua5.1-macos.sh new file mode 100755 index 0000000..70d3bfb --- /dev/null +++ b/install-lua5.1-macos.sh @@ -0,0 +1,5 @@ +wget https://www.lua.org/ftp/lua-5.1.5.tar.gz +tar xvzf lua-5.1.5.tar.gz +cd lua-5.1.5/src +make macosx +sudo cp lua /usr/local/bin/lua