From fc320553f749fba16e892112aa91a8a98194f89a Mon Sep 17 00:00:00 2001 From: q66 Date: Sun, 9 Aug 2020 21:14:37 +0200 Subject: [PATCH] libreoffice: disable skia on BE --- srcpkgs/libreoffice/template | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/srcpkgs/libreoffice/template b/srcpkgs/libreoffice/template index 6894e9d6085..0eb5941e2ad 100644 --- a/srcpkgs/libreoffice/template +++ b/srcpkgs/libreoffice/template @@ -494,6 +494,11 @@ do_configure() { ;; esac + # skia sucks + if [ "$XBPS_TARGET_ENDIAN" = "be" ]; then + opts+=" --disable-skia" + fi + if [ "$build_option_java" ]; then opts+=" --with-java" opts+=" --with-jdk-home=/usr/lib/jvm/openjdk11"