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.5.3
$(PKG)_CHECKSUM := 2042ce713dc8f48e600b50ed8e52c727045c42f52cd424766ca6d04620f16317
$(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