i made this thing in 31 minutes and i'm not proud of it
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

13 lines
348 B

#!/bin/bash
if [ ! -f ./luaqalculator/libqalculator.so ]; then
cd luaqalculator
make
mv libqalculator.so ../
cd ..
fi
if [ ! -f ./luvit ]; then
curl -L https://github.com/luvit/lit/raw/master/get-lit.sh | sh
fi
if [ ! -f ./base64.lua ]; then
curl -L https://github.com/iskolbin/lbase64/raw/master/base64.lua > base64.lua
fi