# SPDX-License-Identifier: GPL-2.0-or-later # Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv) # Copyright (C) 2019-present Team LibreELEC (https://libreelec.tv) PKG_NAME="fontconfig" PKG_VERSION="2.13.94" PKG_SHA256="246d1640a7e54fba697b28e4445f4d9eb63dda1b511d19986249368ee7191882" PKG_LICENSE="OSS" PKG_SITE="http://www.fontconfig.org" PKG_URL="http://www.freedesktop.org/software/fontconfig/release/${PKG_NAME}-${PKG_VERSION}.tar.gz" PKG_DEPENDS_TARGET="toolchain util-linux util-macros freetype libxml2 zlib expat" PKG_LONGDESC="Fontconfig is a library for font customization and configuration." PKG_TOOLCHAIN="configure" PKG_CONFIGURE_OPTS_TARGET="--with-arch=${TARGET_ARCH} \ --with-cache-dir=/storage/.cache/fontconfig \ --with-default-fonts=/usr/share/fonts \ --without-add-fonts \ --disable-dependency-tracking \ --disable-docs" pre_configure_target() { # ensure we dont use '-O3' optimization. CFLAGS=$(echo ${CFLAGS} | sed -e "s|-O3|-O2|") CXXFLAGS=$(echo ${CXXFLAGS} | sed -e "s|-O3|-O2|") CFLAGS+=" -I${PKG_BUILD}" CXXFLAGS+=" -I${PKG_BUILD}" } post_makeinstall_target() { rm -rf ${INSTALL}/usr/bin }