vcpkg/ports/harfbuzz/vcpkg.json
wyzdwdz 6c87aab05c
[harfbuzz] add new CMake target and new feature (#38182)
Fixes #38181.

- [x] Changes comply with the [maintainer
guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md).
- [x] SHA512s are updated for each updated download.
- [x] The "supports" clause reflects platforms that may be fixed by this
new version.
- [x] Any fixed [CI
baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt)
entries are removed from that file.
- [x] Any patches that are no longer applied are deleted from the port's
directory.
- [x] The version database is fixed by rerunning `./vcpkg x-add-version
--all` and committing the result.
- [x] Only one version is added to each modified port's versions file.

Add new CMake target `harfbuzz::harfbuzz-subset` and new feature
`experimental-api`

---------

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
Co-authored-by: Jon <v-zhli17@microsoft.com>
2024-04-18 19:52:41 -04:00

86 lines
1.8 KiB
JSON

{
"name": "harfbuzz",
"version": "8.4.0",
"port-version": 1,
"description": "HarfBuzz OpenType text shaping engine",
"homepage": "https://github.com/harfbuzz/harfbuzz",
"license": "MIT-Modern-Variant",
"supports": "!uwp",
"dependencies": [
{
"name": "gettext",
"platform": "osx"
},
{
"name": "vcpkg-tool-meson",
"host": true
}
],
"default-features": [
"freetype"
],
"features": {
"cairo": {
"description": "Enable Cairo graphics library support",
"dependencies": [
{
"name": "cairo",
"default-features": false,
"features": [
"freetype"
]
}
]
},
"coretext": {
"description": "Enable CoreText shaper backend on macOS",
"supports": "osx"
},
"directwrite": {
"description": "Enable DirectWrite support on Windows",
"supports": "windows"
},
"experimental-api": {
"description": "Enable experimental api"
},
"freetype": {
"description": "Enable FreeType support",
"dependencies": [
{
"name": "freetype",
"default-features": false
}
]
},
"glib": {
"description": "Glib Unicode callbacks support",
"dependencies": [
"glib",
{
"name": "glib",
"host": true
}
]
},
"graphite2": {
"description": "Graphite2 shaper support",
"dependencies": [
"graphite2"
]
},
"icu": {
"description": "icu support for harfbuzz",
"dependencies": [
"icu"
]
},
"introspection": {
"description": "build with introspection",
"dependencies": [
"glib",
"gobject-introspection"
]
}
}
}