forked from Ann0ying/Themely
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeps.sh
More file actions
35 lines (28 loc) · 611 Bytes
/
deps.sh
File metadata and controls
35 lines (28 loc) · 611 Bytes
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
rm -rf tmp;
mkdir tmp;
cd tmp;
git clone https://github.com/xerpi/3ds_portlibs.git;
git clone https://github.com/xerpi/sf2dlib.git;
git clone https://github.com/xerpi/sftdlib.git;
git clone https://github.com/xerpi/sfillib.git;
cd 3ds_portlibs;
make zlib -j4;
sudo -E make install-zlib;
make libogg -j4;
sudo -E make install;
make libjpeg-turbo libpng freetype tremor -j4;
sudo -E make install;
cd ..;
cd sf2dlib/libsf2d;
make -j4;
sudo -E make install;
cd ../..;
cd sftdlib/libsftd;
make -j4;
sudo -E make install;
cd ../..;
cd sfillib/libsfil;
make -j4;
sudo -E make install;
cd ../../../;
rm -rf tmp;