summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/harfbuzz/harfbuzz_11.4.5.bb
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2025-11-07 13:31:53 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-11-07 13:31:53 +0000
commit8c22ff0d8b70d9b12f0487ef696a7e915b9e3173 (patch)
treeefdc32587159d0050a69009bdf2330a531727d95 /meta/recipes-graphics/harfbuzz/harfbuzz_11.4.5.bb
parentd412d2747595c1cc4a5e3ca975e3adc31b2f7891 (diff)
downloadpoky-8c22ff0d8b70d9b12f0487ef696a7e915b9e3173.tar.gz
The poky repository master branch is no longer being updated.
You can either: a) switch to individual clones of bitbake, openembedded-core, meta-yocto and yocto-docs b) use the new bitbake-setup You can find information about either approach in our documentation: https://docs.yoctoproject.org/ Note that "poky" the distro setting is still available in meta-yocto as before and we continue to use and maintain that. Long live Poky! Some further information on the background of this change can be found in: https://lists.openembedded.org/g/openembedded-architecture/message/2179 Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/harfbuzz/harfbuzz_11.4.5.bb')
-rw-r--r--meta/recipes-graphics/harfbuzz/harfbuzz_11.4.5.bb53
1 files changed, 0 insertions, 53 deletions
diff --git a/meta/recipes-graphics/harfbuzz/harfbuzz_11.4.5.bb b/meta/recipes-graphics/harfbuzz/harfbuzz_11.4.5.bb
deleted file mode 100644
index 9e0e42b717..0000000000
--- a/meta/recipes-graphics/harfbuzz/harfbuzz_11.4.5.bb
+++ /dev/null
@@ -1,53 +0,0 @@
1SUMMARY = "Text shaping library"
2DESCRIPTION = "HarfBuzz is an OpenType text shaping engine."
3HOMEPAGE = "http://www.freedesktop.org/wiki/Software/HarfBuzz"
4BUGTRACKER = "https://bugs.freedesktop.org/enter_bug.cgi?product=HarfBuzz"
5SECTION = "libs"
6LICENSE = "MIT"
7LIC_FILES_CHKSUM = "file://COPYING;md5=b98429b8e8e3c2a67cfef01e99e4893d \
8 file://src/hb-ucd.cc;beginline=1;endline=15;md5=29d4dcb6410429195df67efe3382d8bc \
9 "
10
11SRC_URI = "${GITHUB_BASE_URI}/download/${PV}/${BPN}-${PV}.tar.xz"
12SRC_URI[sha256sum] = "0f052eb4ab01d8bae98ba971c954becb32be57d7250f18af343b1d27892e03fa"
13
14DEPENDS += "glib-2.0-native"
15
16inherit meson pkgconfig lib_package gtk-doc gobject-introspection github-releases
17
18GIR_MESON_ENABLE_FLAG = 'enabled'
19GIR_MESON_DISABLE_FLAG = 'disabled'
20GTKDOC_MESON_ENABLE_FLAG = 'enabled'
21GTKDOC_MESON_DISABLE_FLAG = 'disabled'
22
23# As per upstream CONFIG.md, it is recommended to always build with -Os.
24FULL_OPTIMIZATION = "-Os ${DEBUG_LEVELFLAG}"
25
26EXTRA_OEMESON = "-Dtests=disabled"
27
28PACKAGECONFIG ??= "cairo freetype glib icu"
29PACKAGECONFIG[cairo] = "-Dcairo=enabled,-Dcairo=disabled,cairo"
30PACKAGECONFIG[chafa] = "-Dchafa=enabled,-Dchafa=disabled,chafa"
31PACKAGECONFIG[freetype] = "-Dfreetype=enabled,-Dfreetype=disabled,freetype"
32PACKAGECONFIG[glib] = "-Dglib=enabled,-Dglib=disabled,glib-2.0"
33PACKAGECONFIG[graphite] = "-Dgraphite2=enabled,-Dgraphite2=disabled,graphite2"
34PACKAGECONFIG[icu] = "-Dicu=enabled,-Dicu=disabled,icu"
35
36PACKAGES =+ "${PN}-icu ${PN}-icu-dev ${PN}-subset"
37
38LEAD_SONAME = "libharfbuzz.so"
39
40do_install:append() {
41 # If no tools are installed due to PACKAGECONFIG then this directory might
42 # still be installed, so remove it to stop packaging warnings.
43 [ ! -d ${D}${bindir} ] || rmdir --ignore-fail-on-non-empty ${D}${bindir}
44}
45
46FILES:${PN}-icu = "${libdir}/libharfbuzz-icu.so.*"
47FILES:${PN}-icu-dev = "${libdir}/libharfbuzz-icu.la \
48 ${libdir}/libharfbuzz-icu.so \
49 ${libdir}/pkgconfig/harfbuzz-icu.pc \
50"
51FILES:${PN}-subset = "${libdir}/libharfbuzz-subset.so.*"
52
53BBCLASSEXTEND = "native nativesdk"