From ac23b6a26a7c4bcbb327a53303749b9b3c12a670 Mon Sep 17 00:00:00 2001 From: Tran Khanh Duy <40482367+khanhduytran0@users.noreply.github.com> Date: Sun, 13 Sep 2020 17:52:09 +0700 Subject: [PATCH] Add build CUPS --- buildlibs.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/buildlibs.sh b/buildlibs.sh index e426276..fba98e6 100755 --- a/buildlibs.sh +++ b/buildlibs.sh @@ -14,3 +14,13 @@ cd freetype-2.6.2 --with-harfbuzz=no make -j4 make install + +cd .. +echo "Building CUPS" + +cd cups-2.2.4 +./configure \ + --host=aarch64-linux-android \ + --prefix=`pwd`/build_android-aarch64 +make -j4 +make install