diff options
Diffstat (limited to 'vcpkg/ports/libheif/vcpkg.json')
| -rw-r--r-- | vcpkg/ports/libheif/vcpkg.json | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/vcpkg/ports/libheif/vcpkg.json b/vcpkg/ports/libheif/vcpkg.json new file mode 100644 index 0000000..9bf1b45 --- /dev/null +++ b/vcpkg/ports/libheif/vcpkg.json @@ -0,0 +1,66 @@ +{ + "name": "libheif", + "version": "1.20.2", + "description": "libheif is an HEIF and AVIF file format decoder and encoder.", + "homepage": "http://www.libheif.org/", + "license": "LGPL-3.0-only", + "supports": "!xbox", + "dependencies": [ + "libde265", + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + } + ], + "default-features": [ + "hevc" + ], + "features": { + "aom": { + "description": "AVIF decoding and encoding via aom", + "license": "BSD-2-Clause", + "dependencies": [ + "aom" + ] + }, + "gdk-pixbuf": { + "description": "Plugin for gdk-pixbuf", + "supports": "!windows | mingw", + "dependencies": [ + "gdk-pixbuf" + ] + }, + "hevc": { + "description": "HEVC encoding via x265", + "license": "GPL-2.0-or-later", + "dependencies": [ + "x265" + ] + }, + "iso23001-17": { + "description": "Support for ISO23001-17 (uncompressed) codec (experimental)", + "license": "LGPL-3.0-only", + "dependencies": [ + "zlib" + ] + }, + "jpeg": { + "description": "JPEG decoding and encoding via libjpeg-turbo", + "license": "BSD-3-Clause", + "dependencies": [ + "libjpeg-turbo" + ] + }, + "openjpeg": { + "description": "JPEG-2000 decoding and encoding via OpenJPEG", + "license": "BSD-2-Clause", + "dependencies": [ + "openjpeg" + ] + } + } +} |