vcpkg/ports/capnproto/vcpkg.json
Billy O'Neal 4945d50e90
[capnproto] Remove vcpkg_fail_port_install. (#22730)
* [capnproto] Remove vcpkg_fail_port_install.

The portfile and vcpkg.json disagreed.

```
vcpkg.json: !uwp & !((arm | arm64) & windows)
portfile:   !uwp & (!windows | !(arm | arm64))
```

If we demorgan the supports expression once they agree:

```
!uwp & (!(arm | arm64) | !windows)
```

Also, arm64 implies arm:

```
!uwp & (!arm | !windows)
```

In support of https://github.com/microsoft/vcpkg/pull/21502

* Put the supports expression into DNF as suggested by @strega-nil.
2022-01-24 13:51:42 -08:00

28 lines
554 B
JSON

{
"name": "capnproto",
"version": "0.9.1",
"port-version": 2,
"description": "Data interchange format and capability-based RPC system",
"homepage": "https://capnproto.org/",
"supports": "!windows | (!uwp & !arm)",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
},
"zlib"
],
"features": {
"openssl": {
"description": "Build libkj-tls by linking against OpenSSL.",
"dependencies": [
"openssl"
]
}
}
}