vcpkg/ports/libwebp/vcpkg.json
Thomas1664 3a882b3efc
[many ports] Don't depend on default features of tiff (#38049)
This removes the transitive dependency of liblzma via tiff

- [x] Changes comply with the [maintainer
guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md).
- [x] SHA512s are updated for each updated download.
- [x] The "supports" clause reflects platforms that may be fixed by this
new version.
- [x] Any fixed [CI
baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt)
entries are removed from that file.
- [x] Any patches that are no longer applied are deleted from the port's
directory.
- [x] The version database is fixed by rerunning `./vcpkg x-add-version
--all` and committing the result.
- [x] Only one version is added to each modified port's versions file.

---------

Co-authored-by: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com>
Co-authored-by: Alexander Neumann <you@example.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2024-05-01 19:40:19 -07:00

225 lines
4.8 KiB
JSON

{
"name": "libwebp",
"version": "1.4.0",
"port-version": 1,
"description": "WebP codec: library to encode and decode images in WebP format",
"homepage": "https://github.com/webmproject/libwebp",
"license": "BSD-3-Clause",
"dependencies": [
{
"name": "libwebp",
"default-features": false,
"features": [
"unicode"
],
"platform": "windows"
},
{
"name": "libwebp",
"default-features": false,
"features": [
"simd"
],
"platform": "osx & x64"
},
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"default-features": [
"libwebpmux",
"nearlossless",
"simd"
],
"features": {
"all": {
"description": "enable all features except for swap16bitcsp",
"dependencies": [
{
"name": "libwebp",
"features": [
"anim",
"cwebp",
"dwebp",
"extras",
"gif2webp",
"img2webp",
"info",
"libwebpmux",
"mux",
"nearlossless",
"simd"
]
},
{
"name": "libwebp",
"features": [
"vwebp"
],
"platform": "!osx & !static"
},
{
"name": "libwebp",
"features": [
"vwebp-sdl"
],
"platform": "!osx & !static & !uwp"
}
]
},
"anim": {
"description": "Build animation utilities.",
"dependencies": [
"giflib",
"libjpeg-turbo",
"libpng",
{
"name": "libwebp",
"default-features": false,
"features": [
"img2webp",
"mux"
]
},
{
"name": "tiff",
"default-features": false
}
]
},
"cwebp": {
"description": "Build the cwebp command line tool.",
"dependencies": [
"libjpeg-turbo",
"libpng",
{
"name": "tiff",
"default-features": false
}
]
},
"dwebp": {
"description": "Build the dwebp command line tool.",
"dependencies": [
"libjpeg-turbo",
"libpng",
{
"name": "tiff",
"default-features": false
}
]
},
"extras": {
"description": "Build extras. (Doesn't include vwebp-sdl.)",
"dependencies": [
"libjpeg-turbo",
"libpng",
{
"name": "tiff",
"default-features": false
}
]
},
"gif2webp": {
"description": "Build the gif2webp conversion tool.",
"dependencies": [
"giflib",
{
"name": "libwebp",
"default-features": false,
"features": [
"libwebpmux"
]
}
]
},
"img2webp": {
"description": "Build the img2webp animation tool.",
"dependencies": [
"libjpeg-turbo",
"libpng",
{
"name": "libwebp",
"default-features": false,
"features": [
"libwebpmux"
]
},
{
"name": "tiff",
"default-features": false
}
]
},
"info": {
"description": "Build the webpinfo command line tool."
},
"libbwebpmux": {
"description": "Obsolete, use feature libwebpmux instead.",
"dependencies": [
{
"name": "libwebp",
"default-features": false,
"features": [
"libwebpmux"
]
}
]
},
"libwebpmux": {
"description": "Build the libwebpmux library"
},
"mux": {
"description": "Build the webpmux command line tool.",
"dependencies": [
{
"name": "libwebp",
"default-features": false,
"features": [
"libwebpmux"
]
}
]
},
"nearlossless": {
"description": "Enable near-lossless encoding"
},
"simd": {
"description": "Enable any SIMD optimization."
},
"swap16bitcsp": {
"description": "Enable byte swap for 16 bit colorspaces."
},
"unicode": {
"description": "Build Unicode executables. (Adds definition UNICODE and _UNICODE)"
},
"vwebp": {
"description": "Build the vwebp viewer tool.",
"supports": "!osx & !static",
"dependencies": [
"freeglut",
"opengl"
]
},
"vwebp-sdl": {
"description": "Build the vwebp viewer tool for SDL.",
"dependencies": [
{
"name": "libwebp",
"default-features": false,
"features": [
"extras",
"vwebp"
]
},
"sdl1"
]
}
}
}