b676a92e3c
cpe:2.3🅰️fontconfig_project:fontconfig is a valid CPE identifier for this package: https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&keyword=cpe%3A2.3%3Aa%3Afontconfig_project%3Afontconfig Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
30 lines
946 B
Makefile
30 lines
946 B
Makefile
################################################################################
|
|
#
|
|
# fontconfig
|
|
#
|
|
################################################################################
|
|
|
|
FONTCONFIG_VERSION = 2.13.1
|
|
FONTCONFIG_SITE = http://fontconfig.org/release
|
|
FONTCONFIG_SOURCE = fontconfig-$(FONTCONFIG_VERSION).tar.bz2
|
|
# 0002-add-pthread-as-a-dependency-of-a-static-lib.patch
|
|
FONTCONFIG_AUTORECONF = YES
|
|
FONTCONFIG_INSTALL_STAGING = YES
|
|
FONTCONFIG_DEPENDENCIES = freetype expat host-pkgconf host-gperf util-linux
|
|
HOST_FONTCONFIG_DEPENDENCIES = \
|
|
host-freetype host-expat host-pkgconf host-gperf host-util-linux
|
|
FONTCONFIG_LICENSE = fontconfig license
|
|
FONTCONFIG_LICENSE_FILES = COPYING
|
|
FONTCONFIG_CPE_ID_VALID = YES
|
|
|
|
FONTCONFIG_CONF_OPTS = \
|
|
--with-arch=$(GNU_TARGET_NAME) \
|
|
--with-cache-dir=/var/cache/fontconfig \
|
|
--disable-docs
|
|
|
|
HOST_FONTCONFIG_CONF_OPTS = \
|
|
--disable-static
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|