blob: ce5c0bdcc400fec28d255b66300b826baa783072 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/env bash
git clone https://github.com/lunarmodules/md5 md5 --branch 1.3
git clone https://github.com/lunarmodules/luasocket luasocket --branch v3.1.0
git clone https://github.com/lunarmodules/luasec luasec --branch v1.3.2
git clone https://github.com/brimworks/lua-zlib.git lua-zlib --branch v1.2
git clone https://github.com/hishamhm/lua-bz2.git lua-bz2 --branch 0.2.2
git clone https://github.com/keplerproject/luafilesystem luafilesystem --branch v1_8_0
[ -e lua-5.5.0 ] || { curl https://www.lua.org/ftp/lua-5.5.0.tar.gz | tar zxvp; }
|