mirror of
https://github.com/AngelAuraMC/angelauramc-openjdk-build.git
synced 2025-08-03 07:35:59 -04:00
18 lines
279 B
Bash
Executable File
18 lines
279 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
. setdevkitpath.sh
|
|
export PATH=$ANDROID_DEVKIT/bin:$PATH
|
|
|
|
echo "Building Freetype"
|
|
|
|
cd freetype-2.6.2
|
|
./configure \
|
|
--host=$TARGET \
|
|
--prefix=`pwd`/build_android-${TARGET_SHORT} \
|
|
--without-zlib \
|
|
--with-png=no \
|
|
--with-harfbuzz=no
|
|
make -j4
|
|
make install
|
|
|