vcpkg/ports/hunspell/vcpkg.json
Billy O'Neal b868bbe34b
[hunspell] Simplify supports and remove fail_port_install. (#22724)
```
!((arm | uwp) & windows)
!((arm & windows) | (uwp & windows))    distribute ands over ors
!((arm & windows) | uwp)                uwp implies windows
!(arm & windows) & !uwp                 demorgan
```
2022-01-23 19:28:27 -08:00

26 lines
511 B
JSON

{
"name": "hunspell",
"version": "1.7.0",
"port-version": 7,
"description": "The most popular spellchecking library.",
"homepage": "https://github.com/hunspell/hunspell",
"supports": "!(arm & windows) & !uwp",
"dependencies": [
"libiconv"
],
"features": {
"tools": {
"description": "Build hunspell tools",
"dependencies": [
{
"name": "gettext",
"host": true,
"features": [
"tools"
]
}
]
}
}
}