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/harfbuzz.mk

21 lines
722 B

# This file is part of MXE. See LICENSE.md for licensing information.
PKG := harfbuzz
$(PKG)_WEBSITE := https://wiki.freedesktop.org/www/Software/HarfBuzz/
$(PKG)_DESCR := HarfBuzz
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.7.0
$(PKG)_CHECKSUM := 4dba05de1fd44705f54c40d801e0e3d4833555d004cb611cc18675173feae75b
$(PKG)_GH_CONF := harfbuzz/harfbuzz/releases
$(PKG)_DEPS := cc cairo freetype-bootstrap glib icu4c
define $(PKG)_BUILD
# mman-win32 is only a partial implementation
cd '$(1)' && ./autogen.sh && ./configure \
$(MXE_CONFIGURE_OPTS) \
ac_cv_header_sys_mman_h=no \
CXXFLAGS='-std=c++11' \
LIBS='-lstdc++'
$(MAKE) -C '$(1)' -j '$(JOBS)' install
endef