1044 lines
21 KiB
JSON
Raw Normal View History

2023-03-18 17:32:21 +08:00
{
"lib-base": {
"type": "root"
},
"php": {
"type": "root",
"source": "php-src",
2025-03-11 05:39:38 +01:00
"lib-depends": [
"lib-base",
"micro",
"frankenphp"
2025-03-12 09:19:01 +01:00
],
2025-09-09 19:31:40 +08:00
"lib-depends-macos": [
"lib-base",
"micro",
"libxml2",
"frankenphp"
2025-09-09 19:31:40 +08:00
],
"lib-suggests-linux": [
2025-08-20 13:40:54 +07:00
"libacl",
"brotli",
"watcher"
],
2025-09-09 19:31:40 +08:00
"lib-suggests-macos": [
2025-08-20 13:40:54 +07:00
"brotli",
"watcher"
]
},
"frankenphp": {
"source": "frankenphp",
"type": "target"
},
2025-08-31 15:06:59 +08:00
"micro": {
"type": "target",
"source": "micro"
},
"pkg-config": {
"type": "package",
"source": "pkg-config",
"bin-unix": [
"pkg-config"
]
},
"attr": {
"source": "attr",
"static-libs-unix": [
"libattr.a"
]
},
2023-03-18 17:32:21 +08:00
"brotli": {
"source": "brotli",
"pkg-configs": [
"libbrotlicommon",
"libbrotlidec",
"libbrotlienc"
2023-03-18 17:32:21 +08:00
],
"static-libs-windows": [
2024-07-13 21:12:23 +08:00
"brotlicommon.lib",
"brotlienc.lib",
"brotlidec.lib"
2023-03-18 17:32:21 +08:00
]
},
"bzip2": {
"source": "bzip2",
"static-libs-unix": [
"libbz2.a"
],
"static-libs-windows": [
2024-07-13 21:12:23 +08:00
"libbz2.lib",
"libbz2_a.lib"
2023-03-18 17:32:21 +08:00
],
"headers": [
"bzlib.h"
]
},
"curl": {
"source": "curl",
"static-libs-unix": [
"libcurl.a"
],
"static-libs-windows": [
"libcurl_a.lib"
2023-03-18 17:32:21 +08:00
],
"headers": [
"curl"
],
"lib-depends-unix": [
2023-08-30 16:56:11 +02:00
"openssl",
2023-03-18 17:32:21 +08:00
"zlib"
],
2024-07-13 21:12:23 +08:00
"lib-depends-windows": [
"zlib",
2023-03-18 17:32:21 +08:00
"libssh2",
2024-07-13 21:12:23 +08:00
"nghttp2"
2023-03-18 17:32:21 +08:00
],
2025-11-19 10:48:24 +01:00
"lib-suggests-unix": [
2023-03-18 17:32:21 +08:00
"libssh2",
"brotli",
"nghttp2",
2025-06-05 09:44:03 +07:00
"nghttp3",
"ngtcp2",
2023-03-18 17:32:21 +08:00
"zstd",
"libcares",
"ldap",
"idn2",
2025-11-19 10:48:24 +01:00
"krb5"
2024-07-13 21:12:23 +08:00
],
"lib-suggests-windows": [
"brotli",
"zstd"
2023-03-18 17:32:21 +08:00
],
"frameworks": [
"CoreFoundation",
"CoreServices",
2023-03-18 17:32:21 +08:00
"SystemConfiguration"
]
},
2025-06-12 10:46:26 +07:00
"fastlz": {
"source": "fastlz",
"static-libs-unix": [
"libfastlz.a"
],
"headers": [
"fastlz/fastlz.h"
]
},
2023-04-08 11:58:24 +08:00
"freetype": {
"source": "freetype",
"static-libs-unix": [
"libfreetype.a"
],
2024-07-13 21:12:23 +08:00
"static-libs-windows": [
"libfreetype_a.lib"
],
2023-04-08 11:58:24 +08:00
"headers-unix": [
"freetype2/freetype/freetype.h",
"freetype2/ft2build.h"
],
"lib-depends": [
"zlib"
],
"lib-suggests": [
"libpng",
"bzip2",
"brotli"
2023-04-08 11:58:24 +08:00
]
},
2024-07-13 21:12:23 +08:00
"gettext": {
"source": "gettext",
"static-libs-unix": [
"libintl.a"
],
"lib-depends": [
"libiconv"
],
"lib-suggests": [
"ncurses",
"libxml2"
],
"frameworks": [
"CoreFoundation"
]
},
"glfw": {
"source": "ext-glfw",
"static-libs-unix": [
"libglfw3.a"
],
"frameworks": [
"CoreVideo",
"OpenGL",
"Cocoa",
"IOKit"
]
},
2023-03-18 18:46:10 +08:00
"gmp": {
"source": "gmp",
"static-libs-unix": [
"libgmp.a"
],
"static-libs-windows": [
"libgmp.lib"
],
"headers": [
"gmp.h"
]
},
"gmssl": {
"source": "gmssl",
"static-libs-unix": [
"libgmssl.a"
],
"static-libs-windows": [
"gmssl.lib"
],
"frameworks": [
"Security"
]
},
2024-11-09 22:07:52 +08:00
"grpc": {
"source": "grpc",
2025-07-23 13:55:09 +07:00
"pkg-configs": [
"grpc"
],
2024-11-09 22:07:52 +08:00
"lib-depends": [
2024-12-05 11:02:36 +08:00
"zlib",
"openssl",
"libcares"
2024-11-09 22:07:52 +08:00
],
"cpp-library": true,
2024-11-09 22:07:52 +08:00
"frameworks": [
"CoreFoundation"
]
},
2023-06-02 20:27:25 +08:00
"icu": {
"source": "icu",
"cpp-library": true,
2025-07-22 21:13:35 +08:00
"pkg-configs": [
"icu-uc",
"icu-i18n",
"icu-io"
2023-06-02 20:27:25 +08:00
]
},
2025-06-10 19:06:07 +08:00
"icu-static-win": {
"source": "icu-static-win",
"static-libs-windows": [
"icudt.lib",
"icuin.lib",
"icuio.lib",
"icuuc.lib"
],
"headers-windows": [
"unicode"
]
},
2025-11-18 11:28:25 +01:00
"idn2": {
"source": "libidn2",
"pkg-configs": [
"libidn2"
],
"headers": [
"idn2.h"
],
"lib-suggests-unix": [
"libiconv",
2025-11-19 10:48:24 +01:00
"gettext",
"libunistring"
2025-11-18 11:28:25 +01:00
],
"lib-depends-macos": [
"libiconv",
"gettext"
]
},
2023-05-10 00:46:57 +08:00
"imagemagick": {
"source": "imagemagick",
2025-09-18 18:16:23 +02:00
"cpp-library": true,
2025-07-23 00:45:06 +08:00
"pkg-configs": [
"Magick++-7.Q16HDRI",
"MagickCore-7.Q16HDRI",
"MagickWand-7.Q16HDRI"
2023-05-10 00:46:57 +08:00
],
"lib-depends": [
"zlib",
"libjpeg",
"libjxl",
"libpng",
"libwebp",
2024-07-13 21:12:23 +08:00
"freetype",
"libtiff",
2025-03-30 14:02:44 +08:00
"libheif",
"bzip2"
2023-05-10 00:46:57 +08:00
],
"lib-suggests": [
"zstd",
"xz",
"libzip",
"libxml2"
]
},
2024-07-13 21:12:23 +08:00
"imap": {
"source": "imap",
"static-libs-unix": [
"libc-client.a"
],
"lib-suggests": [
"openssl"
]
},
2025-07-18 14:41:10 +07:00
"jbig": {
"source": "jbig",
"static-libs-unix": [
"libjbig.a",
"libjbig85.a"
],
"headers": [
"jbig.h",
"jbig85.h",
"jbig_ar.h"
]
},
2025-11-18 11:28:25 +01:00
"krb5": {
"source": "krb5",
"pkg-configs": [
"krb5-gssapi"
],
"headers": [
"krb5.h",
"gssapi/gssapi.h"
2025-11-18 14:35:58 +01:00
],
"lib-depends": [
"openssl"
],
"lib-suggests": [
"ldap",
"libedit"
2025-11-19 15:20:05 +01:00
],
"frameworks": [
"Kerberos"
2025-11-18 11:28:25 +01:00
]
},
2023-09-18 13:43:58 +02:00
"ldap": {
"source": "ldap",
2025-07-23 00:45:06 +08:00
"pkg-configs": [
"ldap",
"lber"
2023-09-23 14:09:51 +08:00
],
2024-07-13 21:12:23 +08:00
"lib-depends": [
2023-09-23 14:09:51 +08:00
"openssl",
2024-07-13 21:12:23 +08:00
"zlib",
2023-09-23 14:09:51 +08:00
"gmp",
"libsodium"
2023-09-18 13:43:58 +02:00
]
},
2025-07-18 13:51:33 +07:00
"lerc": {
"source": "lerc",
"static-libs-unix": [
"libLerc.a"
],
"cpp-library": true
},
"libacl": {
"source": "libacl",
"static-libs-unix": [
"libacl.a"
],
"lib-depends": [
"attr"
]
},
"libaom": {
"source": "libaom",
"static-libs-unix": [
"libaom.a"
],
"cpp-library": true
},
2024-07-13 21:12:23 +08:00
"libargon2": {
"source": "libargon2",
"static-libs-unix": [
"libargon2.a"
],
"lib-suggests": [
"libsodium"
2024-07-13 21:12:23 +08:00
]
},
"libavif": {
"source": "libavif",
"static-libs-unix": [
"libavif.a"
2024-07-13 21:12:23 +08:00
],
"static-libs-windows": [
"avif.lib"
],
2026-02-17 19:14:29 +07:00
"lib-depends": [
"libaom"
],
"lib-suggests": [
"libwebp",
"libjpeg",
"libxml2",
"libpng"
2024-07-13 21:12:23 +08:00
]
},
"libcares": {
"source": "libcares",
"static-libs-unix": [
"libcares.a"
],
"headers-unix": [
"ares.h",
"ares_dns.h",
"ares_nameser.h"
]
},
"libde265": {
"source": "libde265",
"static-libs-unix": [
"libde265.a"
],
"cpp-library": true
},
2025-10-08 08:48:30 +02:00
"libedit": {
"source": "libedit",
"static-libs-unix": [
"libedit.a"
],
"lib-depends": [
"ncurses"
]
},
2023-04-30 14:22:59 +08:00
"libevent": {
"source": "libevent",
"static-libs-unix": [
"libevent.a",
"libevent_core.a",
"libevent_extra.a",
"libevent_openssl.a"
],
"lib-depends": [
"openssl"
]
},
2023-03-18 17:32:21 +08:00
"libffi": {
"source": "libffi",
"static-libs-unix": [
"libffi.a"
],
"static-libs-windows": [
"libffi.lib"
],
"headers-unix": [
"ffi.h",
"ffitarget.h"
],
"headers-windows": [
"ffi.h",
"fficonfig.h",
"ffitarget.h"
]
},
2024-07-13 21:12:23 +08:00
"libffi-win": {
"source": "libffi-win",
"static-libs-windows": [
"libffi.lib"
],
"headers-windows": [
"ffi.h",
"ffitarget.h",
"fficonfig.h"
]
},
"libheif": {
"source": "libheif",
"static-libs-unix": [
"libheif.a"
],
"lib-depends": [
"libde265",
"libwebp",
"libaom",
"zlib",
"brotli"
]
},
2023-04-08 11:58:24 +08:00
"libiconv": {
"source": "libiconv",
"static-libs-unix": [
"libiconv.a",
"libcharset.a"
2023-04-08 11:58:24 +08:00
],
"headers": [
"iconv.h",
"libcharset.h",
"localcharset.h"
]
},
2024-07-13 21:12:23 +08:00
"libiconv-win": {
"source": "libiconv-win",
"static-libs-windows": [
"libiconv.lib",
"libiconv_a.lib"
]
},
"libjpeg": {
"source": "libjpeg",
"static-libs-unix": [
"libjpeg.a",
"libturbojpeg.a"
2024-07-13 21:12:23 +08:00
],
"static-libs-windows": [
"libjpeg_a.lib"
],
"lib-suggests-windows": [
"zlib"
]
},
2025-07-20 00:10:30 +07:00
"libjxl": {
"source": "libjxl",
2025-07-23 00:45:06 +08:00
"pkg-configs": [
"libjxl",
"libjxl_cms",
"libjxl_threads",
"libhwy"
2025-07-20 00:10:30 +07:00
],
"lib-depends": [
"brotli",
"libjpeg",
"libpng",
"libwebp"
]
},
2024-07-13 21:12:23 +08:00
"liblz4": {
"source": "liblz4",
2023-04-08 11:58:24 +08:00
"static-libs-unix": [
2024-07-13 21:12:23 +08:00
"liblz4.a"
2023-04-08 11:58:24 +08:00
]
},
"libmaxminddb": {
"source": "libmaxminddb",
"static-libs-unix": [
"libmaxminddb.a"
],
"headers": [
"maxminddb.h",
"maxminddb_config.h"
]
},
"libmemcached": {
"source": "libmemcached",
"cpp-library": true,
"static-libs-unix": [
"libmemcached.a",
2025-06-12 10:46:26 +07:00
"libmemcachedprotocol.a",
"libmemcachedutil.a",
"libhashkit.a"
]
},
2023-03-18 17:32:21 +08:00
"libpng": {
"source": "libpng",
"static-libs-unix": [
2023-10-17 19:42:35 +02:00
"libpng16.a"
2023-03-18 17:32:21 +08:00
],
"static-libs-windows": [
2024-07-13 21:12:23 +08:00
"libpng16_static.lib",
"libpng_a.lib"
2023-03-18 17:32:21 +08:00
],
"headers-unix": [
"png.h",
"pngconf.h",
"pnglibconf.h"
],
"headers-windows": [
"png.h",
"pngconf.h"
],
"lib-depends": [
"zlib"
]
},
2024-07-13 21:12:23 +08:00
"librabbitmq": {
"source": "librabbitmq",
"static-libs-unix": [
"librabbitmq.a"
],
"static-libs-windows": [
"rabbitmq.4.lib"
],
"lib-depends": [
"openssl"
]
},
"librdkafka": {
"source": "librdkafka",
2025-11-04 13:35:31 +08:00
"pkg-configs": [
"rdkafka++-static",
"rdkafka-static"
],
"cpp-library": true,
"lib-suggests": [
"curl",
"liblz4",
"openssl",
"zlib",
"zstd"
]
},
2023-06-02 20:27:25 +08:00
"libsodium": {
"source": "libsodium",
"static-libs-unix": [
"libsodium.a"
],
"static-libs-windows": [
"libsodium.lib"
2023-06-02 20:27:25 +08:00
]
},
2023-03-18 17:32:21 +08:00
"libssh2": {
"source": "libssh2",
"static-libs-unix": [
"libssh2.a"
],
"static-libs-windows": [
"libssh2.lib"
],
"headers": [
"libssh2.h",
"libssh2_publickey.h",
"libssh2_sftp.h"
],
"lib-depends": [
"openssl"
]
},
2024-07-13 21:12:23 +08:00
"libtiff": {
"source": "libtiff",
"static-libs-unix": [
"libtiff.a"
],
"lib-depends": [
"zlib",
"libjpeg"
2025-07-18 13:51:33 +07:00
],
"lib-suggests-unix": [
2025-07-18 14:04:55 +07:00
"lerc",
2025-07-18 14:52:39 +07:00
"libwebp",
"jbig",
"xz",
"zstd"
2024-07-13 21:12:23 +08:00
]
},
2025-11-18 11:28:25 +01:00
"libunistring": {
"source": "libunistring",
"static-libs-unix": [
"libunistring.a"
],
"headers": [
2025-11-19 10:48:24 +01:00
"unistr.h",
2025-11-18 11:28:25 +01:00
"unistring/"
]
},
"liburing": {
"source": "liburing",
"pkg-configs": [
"liburing",
"liburing-ffi"
],
"static-libs-linux": [
"liburing.a",
"liburing-ffi.a"
],
"headers-linux": [
"liburing/",
"liburing.h"
]
},
2024-07-13 21:12:23 +08:00
"libuuid": {
"source": "libuuid",
"static-libs-unix": [
"libuuid.a"
],
"headers": [
"uuid/uuid.h"
]
},
"libuv": {
"source": "libuv",
"static-libs-unix": [
"libuv.a"
]
},
"libwebp": {
"source": "libwebp",
2025-07-22 22:09:45 +08:00
"pkg-configs": [
"libwebp",
"libwebpdecoder",
"libwebpdemux",
"libwebpmux",
"libsharpyuv"
2024-07-13 21:12:23 +08:00
],
"static-libs-windows": [
"libwebp.lib",
"libwebpdecoder.lib",
"libwebpdemux.lib",
"libsharpyuv.lib"
]
},
2023-03-18 17:32:21 +08:00
"libxml2": {
"source": "libxml2",
"pkg-configs": [
"libxml-2.0"
2023-03-18 17:32:21 +08:00
],
"static-libs-windows": [
2024-07-13 21:12:23 +08:00
"libxml2s.lib",
"libxml2_a.lib"
2023-03-18 17:32:21 +08:00
],
"headers": [
"libxml2"
],
2024-07-13 21:12:23 +08:00
"lib-depends-unix": [
"libiconv"
2023-03-21 01:52:22 +08:00
],
2024-07-13 21:12:23 +08:00
"lib-suggests-unix": [
2023-03-18 17:32:21 +08:00
"xz",
2024-07-13 21:12:23 +08:00
"zlib"
],
"lib-depends-windows": [
"libiconv-win"
2023-03-18 17:32:21 +08:00
],
"lib-suggests-windows": [
2024-07-13 21:12:23 +08:00
"zlib"
2023-03-18 17:32:21 +08:00
]
},
2023-08-26 23:50:24 +08:00
"libxslt": {
"source": "libxslt",
"static-libs-unix": [
"libxslt.a",
"libexslt.a"
],
"lib-depends": [
"libxml2"
]
},
2023-03-18 17:32:21 +08:00
"libyaml": {
"source": "libyaml",
"static-libs-unix": [
"libyaml.a"
],
"static-libs-windows": [
"yaml.lib"
],
"headers": [
"yaml.h"
]
},
"libzip": {
"source": "libzip",
"static-libs-unix": [
"libzip.a"
],
"static-libs-windows": [
2024-07-13 21:12:23 +08:00
"zip.lib",
"libzip_a.lib"
2023-03-18 17:32:21 +08:00
],
"headers": [
"zip.h",
"zipconf.h"
],
2024-07-13 21:12:23 +08:00
"lib-depends-unix": [
2023-03-18 17:32:21 +08:00
"zlib"
],
2024-07-13 21:12:23 +08:00
"lib-suggests-unix": [
2023-03-18 17:32:21 +08:00
"bzip2",
"xz",
"zstd",
"openssl"
2024-07-13 21:12:23 +08:00
],
"lib-depends-windows": [
"zlib",
"bzip2",
"xz"
],
"lib-suggests-windows": [
"zstd",
"openssl"
2023-03-18 19:58:36 +08:00
]
},
2025-03-20 04:36:46 +01:00
"mimalloc": {
"source": "mimalloc",
"static-libs-unix": [
"libmimalloc.a"
2025-03-20 04:36:46 +01:00
]
},
2023-05-10 00:46:57 +08:00
"ncurses": {
"source": "ncurses",
"static-libs-unix": [
"libncurses.a"
]
},
"net-snmp": {
"source": "net-snmp",
"pkg-configs": [
"netsnmp",
"netsnmp-agent"
],
"lib-depends": [
"openssl",
"zlib"
]
},
2023-03-18 17:32:21 +08:00
"nghttp2": {
"source": "nghttp2",
"static-libs-unix": [
"libnghttp2.a"
],
"static-libs-windows": [
"nghttp2.lib"
],
"headers": [
"nghttp2"
],
"lib-depends": [
"zlib",
"openssl"
],
"lib-suggests": [
2025-06-05 09:44:03 +07:00
"libxml2",
"nghttp3",
"ngtcp2"
2023-03-18 17:32:21 +08:00
]
},
2025-06-04 21:42:44 +07:00
"nghttp3": {
"source": "nghttp3",
"static-libs-unix": [
"libnghttp3.a"
],
"static-libs-windows": [
"nghttp3.lib"
],
"headers": [
"nghttp3"
],
"lib-depends": [
"openssl"
2025-06-05 09:44:03 +07:00
]
},
"ngtcp2": {
"source": "ngtcp2",
"static-libs-unix": [
"libngtcp2.a",
"libngtcp2_crypto_ossl.a"
],
"static-libs-windows": [
"ngtcp2.lib",
"ngtcp2_crypto_ossl.lib"
],
"headers": [
"ngtcp2"
],
"lib-depends": [
"openssl"
2025-06-06 16:20:34 +07:00
],
"lib-suggests": [
"nghttp3",
"brotli"
2025-06-04 21:42:44 +07:00
]
},
2023-03-18 17:32:21 +08:00
"onig": {
"source": "onig",
"static-libs-unix": [
"libonig.a"
],
"static-libs-windows": [
2024-07-13 21:12:23 +08:00
"onig.lib",
"onig_a.lib"
2023-03-18 17:32:21 +08:00
],
"headers": [
"oniggnu.h",
"oniguruma.h"
]
},
"openssl": {
"source": "openssl",
"pkg-configs": [
"openssl"
2023-03-18 17:32:21 +08:00
],
"static-libs-windows": [
"libssl.lib",
"libcrypto.lib"
],
2023-04-08 18:44:46 +08:00
"lib-depends": [
2023-03-18 17:32:21 +08:00
"zlib"
]
},
"postgresql": {
"source": "postgresql",
2025-07-23 01:32:42 +08:00
"pkg-configs": [
"libpq"
2023-06-30 20:53:18 +08:00
],
"lib-depends": [
"libiconv",
"libxml2",
"openssl",
"zlib",
2025-10-20 21:23:54 +02:00
"libedit"
],
"lib-suggests": [
"icu",
"libxslt",
"ldap",
"zstd"
]
},
"postgresql-win": {
"source": "postgresql-win",
"static-libs": [
"libpq.lib",
"libpgport.lib",
"libpgcommon.lib"
]
},
2023-03-18 17:32:21 +08:00
"pthreads4w": {
"source": "pthreads4w",
"static-libs-windows": [
"libpthreadVC3.lib"
2024-07-13 21:12:23 +08:00
]
},
"qdbm": {
"source": "qdbm",
"static-libs-unix": [
"libqdbm.a"
],
"static-libs-windows": [
"qdbm_a.lib"
2023-03-18 17:32:21 +08:00
],
"headers-windows": [
2024-07-13 21:12:23 +08:00
"depot.h"
2023-03-18 17:32:21 +08:00
]
},
2025-08-01 01:50:32 +08:00
"re2c": {
"source": "re2c",
"bin-unix": [
"re2c"
]
},
2023-05-10 00:46:57 +08:00
"readline": {
"source": "readline",
"static-libs-unix": [
"libreadline.a"
],
"lib-depends": [
"ncurses"
]
},
2023-09-04 10:41:38 +02:00
"snappy": {
"source": "snappy",
2025-09-30 00:31:20 +02:00
"cpp-library": true,
2023-09-04 10:41:38 +02:00
"static-libs-unix": [
"libsnappy.a"
],
"headers-unix": [
"snappy.h",
2023-09-04 10:41:38 +02:00
"snappy-c.h",
"snappy-sinksource.h",
"snappy-stubs-public.h"
],
"lib-depends": [
"zlib"
]
},
2023-03-18 17:32:21 +08:00
"sqlite": {
"source": "sqlite",
"static-libs-unix": [
"libsqlite3.a"
],
2024-07-13 21:12:23 +08:00
"static-libs-windows": [
"libsqlite3_a.lib"
],
"headers": [
2023-03-18 17:32:21 +08:00
"sqlite3.h",
"sqlite3ext.h"
]
},
2024-07-13 21:12:23 +08:00
"tidy": {
"source": "tidy",
"static-libs-unix": [
"libtidy.a"
]
},
"unixodbc": {
"source": "unixodbc",
"static-libs-unix": [
"libodbc.a",
"libodbccr.a",
"libodbcinst.a"
],
"lib-depends": [
"libiconv"
]
},
2025-07-18 14:41:10 +07:00
"watcher": {
"source": "watcher",
2025-09-19 15:29:49 +02:00
"cpp-library": true,
2025-07-18 14:41:10 +07:00
"static-libs-unix": [
"libwatcher-c.a"
],
"headers": [
"wtr/watcher-c.h"
]
},
2023-03-18 17:32:21 +08:00
"xz": {
"source": "xz",
"static-libs-unix": [
"liblzma.a"
],
"static-libs-windows": [
2024-10-04 22:09:06 +08:00
"lzma.lib",
2024-07-13 21:12:23 +08:00
"liblzma_a.lib"
2023-03-18 17:32:21 +08:00
],
"headers-unix": [
"lzma"
],
"headers-windows": [
"lzma",
"lzma.h"
],
2024-07-13 21:12:23 +08:00
"lib-depends-unix": [
"libiconv"
2023-03-18 17:32:21 +08:00
]
},
"zlib": {
"source": "zlib",
"static-libs-unix": [
"libz.a"
],
"static-libs-windows": [
"zlib_a.lib"
],
"headers": [
"zlib.h",
"zconf.h"
]
},
"zstd": {
"source": "zstd",
"static-libs-unix": [
"libzstd.a"
],
"static-libs-windows": [
[
"zstd.lib",
"zstd_static.lib"
]
],
"headers-unix": [
"zdict.h",
"zstd.h",
"zstd_errors.h"
],
"headers-windows": [
"zstd.h",
"zstd_errors.h"
]
}
2023-09-03 15:49:15 +02:00
}