22 lines
638 B
Bash
Executable file
22 lines
638 B
Bash
Executable file
#!/bin/bash
|
|
|
|
. $(dirname $0)/environment.sh
|
|
|
|
try $(dirname $0)/build-libffi.sh
|
|
try $(dirname $0)/build-python.sh
|
|
# Uncomment the line below to add OpenSSL support libraries
|
|
#try $(dirname $0)/build-openssl.sh
|
|
try $(dirname $0)/reduce-python.sh
|
|
try $(dirname $0)/build-ios.sh
|
|
try $(dirname $0)/build-sdl.sh
|
|
try $(dirname $0)/build-freetype.sh
|
|
try $(dirname $0)/build-sdlttf.sh
|
|
try $(dirname $0)/build-sdlmixer.sh
|
|
try $(dirname $0)/build-libjpeg.sh
|
|
try $(dirname $0)/build-pil.sh
|
|
try $(dirname $0)/build-kivy.sh
|
|
try $(dirname $0)/build-pyobjus.sh
|
|
|
|
echo '== Build done'
|
|
echo "Available libraries in $BUILDROOT/lib"
|
|
echo $(ls $BUILDROOT/lib)
|