54347f6d8a
Add optional openssl support
24 lines
736 B
Bash
Executable file
24 lines
736 B
Bash
Executable file
#!/bin/bash
|
|
|
|
. $(dirname $0)/environment.sh
|
|
|
|
try $(dirname $0)/build-libffi.sh
|
|
try $(dirname $0)/build-python.sh
|
|
# Uncomment the "try" line below to add OpenSSL support libraries
|
|
# For more detail: https://github.com/zen-code/ios-openssl
|
|
#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
|
|
try $(dirname $0)/build-plyer.sh
|
|
|
|
echo '== Build done'
|
|
echo "Available libraries in $BUILDROOT/lib"
|
|
echo $(ls $BUILDROOT/lib)
|