Install script / batch file for OpenLuup

Spending time this last week installing and running things on my Rasp Pi (Raspian) - and seeing the manual instructions out there, is it possible to collaborate on creating an install/batch script/file to automate as many steps as possible ? (Could such a thing work for the Pi, where there can be confidence that everything is pretty much equal?)

Such a thing would also help newbies and for any rebuilds too - If it helps, I found this on GitHub…

Extract part of the above script, and added the OpenLuup packages, to give the idea.

[code]#Place the name of the package you wish to install here.
#(ie. “gimp” or “vlc”)

packages="

lua5.1
lua-socket
lua-filesystem
lua-sec
luarocks
lua-expat
luarocks
luafilesystem
libssl-dev
dkjson
curl

#install each app from the array with “yes” flag.

apt-get install $packages -y 

fi

printf “Package installation has finished.”
sleep 5[/code]