-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.sh
executable file
·42 lines (29 loc) · 1011 Bytes
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/bin/bash
rm -rf thirdparty
rm -rf sti
mkdir lib
cd lib
# unsed libs
#git clone -b v2.3.1 --depth 1 git@github.com:kikito/anim8.git
#git clone --depth 1 https://github.com/sbseltzer/love-bone
# build using v1.2.3.0
git clone --depth 1 https://github.com/karai17/Simple-Tiled-Implementation
mv Simple-Tiled-Implementation/sti ../lib/
rm -rf Simple-Tiled-Implementation
git clone --depth 1 https://github.com/vrld/hump.git
git clone --depth 1 https://github.com/kikito/tween.lua.git tween
git clone --depth 1 https://github.com/flamendless/Slab.git
git clone --depth 1 https://github.com/kikito/bump.lua.git bump
#git clone --depth 1 git@github.com:tavuntu/urutora.git urutora_temp
#mv urutora_temp/urutora urutora
#rm -rf urutora_temp
# git clone --depth 1 git@github.com:vrld/suit.git
# git clone --depth 1 git@github.com:kyleconroy/lua-state-machine.git
#cd ..
# linux love engine
#OS="$(uname -s)"
#if [ ${OS} = "Linux" ]
#then
# yay -S love --noconfirm --needed
#fi
echo "Install complete"