mirror of
https://github.com/AngelAuraMC/angelauramc-openjdk-build.git
synced 2025-09-08 11:50:34 -04:00
18 lines
287 B
Bash
Executable File
18 lines
287 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
. setdevkitpath_x86.sh
|
|
export PATH=$ANDROID_DEVKIT/bin:$PATH
|
|
|
|
echo "Building Freetype"
|
|
|
|
cd freetype-2.6.2-x86
|
|
./configure \
|
|
--host=i686-linux-android \
|
|
--prefix=`pwd`/build_android-i686 \
|
|
--without-zlib \
|
|
--with-png=no \
|
|
--with-harfbuzz=no
|
|
|
|
make -j4
|
|
make install
|