aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/libarchive/vcpkg.json
blob: 32c1f2c9c57db74951c661527a53740f03194dbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
  "name": "libarchive",
  "version": "3.8.2",
  "description": "Library for reading and writing streaming archives",
  "homepage": "https://www.libarchive.org",
  "license": null,
  "supports": "!uwp",
  "dependencies": [
    {
      "name": "vcpkg-cmake",
      "host": true
    },
    "zlib"
  ],
  "default-features": [
    "bzip2",
    "crypto",
    "lz4",
    "lzma",
    "xar",
    "zstd"
  ],
  "features": {
    "bzip2": {
      "description": "BZip2 support",
      "dependencies": [
        "bzip2"
      ]
    },
    "crypto": {
      "description": "Support for cryptographic features",
      "dependencies": [
        {
          "name": "mbedtls",
          "platform": "osx"
        },
        {
          "name": "openssl",
          "platform": "!osx"
        }
      ]
    },
    "lz4": {
      "description": "Lz4 support",
      "dependencies": [
        "lz4"
      ]
    },
    "lzma": {
      "description": "Lzma support",
      "dependencies": [
        "liblzma"
      ]
    },
    "lzo": {
      "description": "Lzo support",
      "dependencies": [
        "lzo"
      ]
    },
    "xar": {
      "description": "Xar support",
      "dependencies": [
        {
          "name": "libxml2",
          "default-features": false,
          "platform": "!windows | mingw"
        }
      ]
    },
    "zstd": {
      "description": "Zstd support",
      "dependencies": [
        "zstd"
      ]
    }
  }
}