You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mxe/src/fontconfig.mk

30 lines
1.1 KiB

# This file is part of MXE. See LICENSE.md for licensing information.
PKG := fontconfig
$(PKG)_WEBSITE := https://fontconfig.org/
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.13.1
$(PKG)_CHECKSUM := f655dd2a986d7aa97e052261b36aa67b0a64989496361eca8d604e6414006741
$(PKG)_SUBDIR := fontconfig-$($(PKG)_VERSION)
$(PKG)_FILE := fontconfig-$($(PKG)_VERSION).tar.bz2
$(PKG)_URL := https://fontconfig.org/release/$($(PKG)_FILE)
$(PKG)_DEPS := cc expat freetype-bootstrap gettext
define $(PKG)_UPDATE
$(WGET) -q -O- 'https://fontconfig.org/release/' | \
$(SED) -n 's,.*fontconfig-\([0-9][^>]*\)\.tar.*,\1,p' | \
grep -v '\([0-9]\+\.\)\{2\}9[0-9]' | \
tail -1
endef
define $(PKG)_BUILD
cd '$(1)' && autoreconf -fi
cd '$(1)' && ./configure \
$(MXE_CONFIGURE_OPTS) \
--with-arch='$(TARGET)' \
--with-expat='$(PREFIX)/$(TARGET)' \
--disable-docs
$(MAKE) -C '$(1)' -j '$(JOBS)' bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
$(MAKE) -C '$(1)' -j 1 install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
endef