This commit is contained in:
2024-05-20 20:23:38 -07:00
commit 578313417b
9 changed files with 354 additions and 0 deletions

16
rpi-os.install Executable file
View File

@ -0,0 +1,16 @@
#!/bin/sh
echo "Installing lua..."
sudo apt install lua5.1 liblua5.1-dev
echo "Installing luarocks..."
sudo apt install luarocks
echo "Installing dependencies..."
sudo luarocks install cmark
sudo luarocks install luafilesystem
sudo luarocks install lsocket
echo "Installing fennel..."
sudo curl -o /bin/fennel https://fennel-lang.org/downloads/fennel-1.4.2
sudo chmod +x /bin/fennel