blob: f58063bfed81c5dfcd31d808e73ce9459688993f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
__deps__ := FONTCONFIG FREETYPE
$(eval $(call import.MODULE.defs,HARFBUZZ,harfbuzz,$(__deps__)))
$(eval $(call import.CONTRIB.defs,HARFBUZZ))
HARFBUZZ.FETCH.url = https://download.handbrake.fr/handbrake/contrib/harfbuzz-1.3.0.tar.bz2
HARFBUZZ.FETCH.url += https://www.freedesktop.org/software/harfbuzz/release/harfbuzz-1.3.0.tar.bz2
HARFBUZZ.FETCH.md5 = a82d49ff67197bc3c96ea34b98880c52
# Tell configure where to find our versions of freetype and fontconfig
HARFBUZZ.CONFIGURE.extra = \
--with-fontconfig=yes --with-freetype=yes \
FREETYPE_LIBS="-L$(call fn.ABSOLUTE,$(CONTRIB.build/))lib -lfreetype" \
FREETYPE_CFLAGS="-I$(call fn.ABSOLUTE,$(CONTRIB.build/))include/freetype2" \
FONTCONFIG_LIBS="-L$(call fn.ABSOLUTE,$(CONTRIB.build/))lib -lfontconfig" \
FONTCONFIG_CFLAGS="-I$(call fn.ABSOLUTE,$(CONTRIB.build/))include"
ifeq ($(BUILD.system),darwin)
HARFBUZZ.CONFIGURE.extra += --with-coretext=no --with-glib=no
endif
ifeq (1-mingw,$(BUILD.cross)-$(BUILD.system))
HARFBUZZ.CONFIGURE.extra += --with-directwrite=no --with-glib=no \
--with-gobject=no --with-cairo=no --with-icu=no --with-graphite2=no \
--with-uniscribe=no
endif
|