vcpkg/ports/gettext/vcpkg.json
Alonso Schaich fa6e6a6ec3
[gettext] Workaround bash substitution failure (#36203)
* [gettext] Attempt fixing invalid substitution error (microsoft/vcpkg#36201)

Bash is complaining about invalid substitutions, so use sed to remove the
gettext-runtime substring instead.

* [gettext] Bump portrevision (microsoft/vcpkg#36201)

* [gettext] Regenerate versions (microsoft/vcpkg#36201)
2024-01-22 12:32:16 -08:00

32 lines
722 B
JSON

{
"name": "gettext",
"version": "0.22.4",
"port-version": 2,
"description": "A GNU framework to help produce multi-lingual messages.",
"homepage": "https://www.gnu.org/software/gettext/",
"license": "GPL-3.0-only",
"supports": "!xbox",
"dependencies": [
"gettext-libintl"
],
"features": {
"nls": {
"description": "Enable native language support"
},
"runtime-tools": {
"description": "Build runtime tools for internationalization of scripts",
"supports": "!uwp",
"dependencies": [
"libiconv"
]
},
"tools": {
"description": "Build gettext tools",
"supports": "!uwp",
"dependencies": [
"libiconv"
]
}
}
}