mirror of
https://git.yoctoproject.org/poky
synced 2026-04-29 18:32:20 +02:00
Fix hb-coretext with trailing whitespace in right-to-left. New API: hb_buffer_reverse_range(). Allow implementing atomic ops in config.h. Fix hb_language_t in language bindings. Misc fixes. (From OE-Core rev: 64733935306d6b484db40b15e6e4938fbabf1d65) Signed-off-by: Cristian Iorga <cristian.iorga@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
36 lines
1.2 KiB
BlitzBasic
36 lines
1.2 KiB
BlitzBasic
SUMMARY = "Text shaping library"
|
|
DESCRIPTION = "HarfBuzz is an OpenType text shaping engine."
|
|
HOMEPAGE = "http://www.freedesktop.org/wiki/Software/HarfBuzz"
|
|
BUGTRACKER = "https://bugs.freedesktop.org/enter_bug.cgi?product=HarfBuzz"
|
|
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=e021dd6dda6ff1e6b1044002fc662b9b \
|
|
file://src/hb-ucdn/COPYING;md5=994ba0f1295f15b4bda4999a5bbeddef \
|
|
"
|
|
|
|
SECTION = "libs"
|
|
|
|
SRC_URI = "http://www.freedesktop.org/software/harfbuzz/release/${BP}.tar.bz2"
|
|
SRC_URI[md5sum] = "a2966f1b6a470c2cd84eb511f924cf68"
|
|
SRC_URI[sha256sum] = "d81aa53d0c02b437beeaac159d7fc16394d676bbce0860fb6f6a10b587dc057c"
|
|
|
|
inherit autotools pkgconfig lib_package
|
|
|
|
DEPENDS = "glib-2.0 cairo freetype"
|
|
|
|
BBCLASSEXTEND = "native"
|
|
|
|
EXTRA_OECONF = "--with-glib --with-freetype --with-cairo --without-graphite2"
|
|
|
|
PACKAGECONFIG ??= ""
|
|
PACKAGECONFIG[icu] = "--with-icu,--without-icu,icu"
|
|
|
|
PACKAGES =+ "${PN}-icu ${PN}-icu-dbg ${PN}-icu-dev"
|
|
|
|
FILES_${PN}-icu = "${libdir}/libharfbuzz-icu.so.*"
|
|
FILES_${PN}-icu-dbg = "${libdir}/.debug/libharfbuzz-icu.so*"
|
|
FILES_${PN}-icu-dev = "${libdir}/libharfbuzz-icu.la \
|
|
${libdir}/libharfbuzz-icu.so \
|
|
${libdir}/pkgconfig/harfbuzz-icu.pc \
|
|
"
|