From 64ecd81be761d84f6f41bd50272abe29c1c3ad47 Mon Sep 17 00:00:00 2001 From: Sung Jeon Date: Tue, 14 Dec 2021 19:32:28 +0900 Subject: [PATCH] libvips: Add version 8.12.1 (#3052) * libvips: Create libvips.json For some reason libvips omits it's minor version from folder name, which could cause issues with autoupdate * libvips: add hashes I couldn't find where to get hashes automatically from libvips. * libvips: fix extract_dir of autoupdate * libvips: Fix autoupdate URL Co-authored-by: Issac Lin * Update libvips.json Co-authored-by: Issac Lin Co-authored-by: Rashil Gandhi <46838874+rashil2000@users.noreply.github.com> --- bucket/libvips.json | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 bucket/libvips.json diff --git a/bucket/libvips.json b/bucket/libvips.json new file mode 100644 index 0000000000..db44412316 --- /dev/null +++ b/bucket/libvips.json @@ -0,0 +1,37 @@ +{ + "version": "8.12.1", + "description": "A demand-driven, horizontally threaded image processing library", + "homepage": "https://www.libvips.org/", + "license": "LGPL-2.1-only", + "architecture": { + "64bit": { + "hash": "49e6909c8e0c57f15677c16434946b45a288d078b4bc65a3e03616b0aed08881", + "url": "https://github.com/libvips/build-win64-mxe/releases/download/v8.12.1/vips-dev-w64-all-8.12.1.zip" + }, + "32bit": { + "hash": "f084cbd6b15e4f8afd28b7893f628fa8bd3fc9d601bfe0fddac4fdeddbe3233a", + "url": "https://github.com/libvips/build-win64-mxe/releases/download/v8.12.1/vips-dev-w32-all-8.12.1.zip" + } + }, + "extract_dir": "vips-dev-8.12", + "bin": [ + "bin\\vips.exe", + "bin\\vipsedit.exe", + "bin\\vipsheader.exe", + "bin\\vipsthumbnail.exe" + ], + "checkver": { + "github": "https://github.com/libvips/build-win64-mxe" + }, + "autoupdate": { + "architecture": { + "64bit": { + "url": "https://github.com/libvips/build-win64-mxe/releases/download/v$version/vips-dev-w64-all-$version.zip" + }, + "32bit": { + "url": "https://github.com/libvips/build-win64-mxe/releases/download/v$version/vips-dev-w32-all-$version.zip" + } + }, + "extract_dir": "vips-dev-$majorVersion.$minorVersion" + } +}