mirror of
https://github.com/AngelAuraMC/angelauramc-openjdk-build.git
synced 2025-08-05 16:46:01 -04:00
27 lines
467 B
Bash
Executable File
27 lines
467 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=aarch64-linux-android \
|
|
--prefix=`pwd`/build_android-aarch64 \
|
|
--without-zlib \
|
|
--with-png=no \
|
|
--with-harfbuzz=no
|
|
make -j4
|
|
make install
|
|
|
|
# cd ..
|
|
# echo "Building CUPS"
|
|
|
|
# cd cups-2.2.4
|
|
# ./configure CC="gcc -std=c99" \
|
|
# --host=aarch64-linux-android \
|
|
# --prefix=`pwd`/build_android-aarch64
|
|
# make -j4
|
|
# make install
|