From c14889d4b3f97f1e3b35069572523d4e4a0e5b1e Mon Sep 17 00:00:00 2001 From: eugenesvk Date: Tue, 3 Mar 2026 14:18:30 +0700 Subject: [PATCH 1/2] ipatool: Add version 2.3.0 (#7704) --- bucket/ipatool.json | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 bucket/ipatool.json diff --git a/bucket/ipatool.json b/bucket/ipatool.json new file mode 100644 index 0000000000000..6bcf9778826b0 --- /dev/null +++ b/bucket/ipatool.json @@ -0,0 +1,30 @@ +{ + "version": "2.3.0", + "description": "Command-line tool to search/download app packages (aka ipa files) from the iOS App Store", + "homepage": "https://github.com/majd/ipatool", + "license": "MIT", + "architecture": { + "64bit": { + "url": "https://github.com/majd/ipatool/releases/download/v2.3.0/ipatool-2.3.0-windows-amd64.tar.gz", + "hash": "eaf208f0fee964a82f14f8eda60c4b0568fe555ad97729bb74277d3d7c0e4d54" + }, + "arm64": { + "url": "https://github.com/majd/ipatool/releases/download/v2.3.0/ipatool-2.3.0-windows-arm64.tar.gz", + "hash": "690d94332802f5fca604cce29ac9762089c7271c30a68e64eeb462c605e1fa07" + } + }, + "extract_dir": "bin", + "pre_install": "Get-ChildItem \"$dir/ipatool-*-windows-*64.exe\" | Rename-Item -NewName \"ipatool.exe\"", + "bin": "ipatool.exe", + "checkver": "github", + "autoupdate": { + "architecture": { + "64bit": { + "url": "https://github.com/majd/ipatool/releases/download/v$version/ipatool-$version-windows-amd64.tar.gz" + }, + "arm64": { + "url": "https://github.com/majd/ipatool/releases/download/v$version/ipatool-$version-windows-arm64.tar.gz" + } + } + } +} From a8c793a527e8faba915a6bcd497884ad5df9ac6b Mon Sep 17 00:00:00 2001 From: z-Fng Date: Tue, 3 Mar 2026 08:45:59 +0000 Subject: [PATCH 2/2] Add hash extraction --- bucket/ipatool.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/bucket/ipatool.json b/bucket/ipatool.json index 6bcf9778826b0..46247b72d825c 100644 --- a/bucket/ipatool.json +++ b/bucket/ipatool.json @@ -1,6 +1,6 @@ { "version": "2.3.0", - "description": "Command-line tool to search/download app packages (aka ipa files) from the iOS App Store", + "description": "A command line tool that allows searching and downloading app packages (known as ipa files) from the iOS App Store.", "homepage": "https://github.com/majd/ipatool", "license": "MIT", "architecture": { @@ -14,7 +14,7 @@ } }, "extract_dir": "bin", - "pre_install": "Get-ChildItem \"$dir/ipatool-*-windows-*64.exe\" | Rename-Item -NewName \"ipatool.exe\"", + "pre_install": "Get-ChildItem \"$dir\\ipatool-*.exe\" | Select-Object -First 1 | Rename-Item -NewName \"ipatool.exe\"", "bin": "ipatool.exe", "checkver": "github", "autoupdate": { @@ -25,6 +25,9 @@ "arm64": { "url": "https://github.com/majd/ipatool/releases/download/v$version/ipatool-$version-windows-arm64.tar.gz" } + }, + "hash": { + "url": "$url.sha256sum" } } }