ScoopInstaller_Main/bucket/imagemagick.json
tech189 885d52ff16
ImageMagick: includes DLLs for programming APIs (#2885)
* ImageMagick - includes DLLs for programming APIs

The manifest now downloads the full installer and unpacks it rather than the portable version. It also adds the environment variables and the installation folder to the path. This allows other programs such as Python Wand to find the programs and libraries for their own use. If further environment variables are missing, they can be added from this list: https://imagemagick.org/script/resources.php#environment. The bundled ffmpeg was unused in the portable version but as the manifest now adds the installation directory to the path, the outdated ffmpeg is renamed so that users can continue using the up-to-date ffmpeg downloaded by scoop.

* Change ffmpeg dependency to suggest, add note for info

* Remove convert.exe to stop conflict with built-in command

* Remove shims because already in path, account for convert.exe conflict

* Removed suggest ffmpeg and improved notes

* Restored mirror urls

* Keep shims just in case, add note that convert is deprecated

* Update notes

Co-authored-by: Rashil Gandhi <46838874+rashil2000@users.noreply.github.com>
2021-11-05 17:03:39 +05:30

46 lines
2.0 KiB
JSON

{
"version": "7.1.0-13",
"description": "Create, edit, compose, and convert 200+ of bitmap images formats.",
"homepage": "https://imagemagick.org/",
"license": "ImageMagick",
"architecture": {
"64bit": {
"url": "https://download.imagemagick.org/ImageMagick/download/binaries/ImageMagick-7.1.0-13-Q16-HDRI-x64-dll.exe",
"hash": "c4607f68794f9e8e5ed73b1c0a295aae8e612c4b63b163e65c5f2669068b78d0"
},
"32bit": {
"url": "https://download.imagemagick.org/ImageMagick/download/binaries/ImageMagick-7.1.0-13-Q16-HDRI-x86-dll.exe",
"hash": "477bf261a8ad6d3034e0b6f58ce7abdeb9a2c6186c9caef34e64fe9e24eafa42"
}
},
"innosetup": true,
"env_set": {
"MAGICK_HOME": "$dir",
"MAGICK_CODER_MODULE_PATH": "$dir\\modules\\coders"
},
"env_add_path": ".",
"post_install": "Rename-Item $dir\\ffmpeg.exe $dir\\ffmpeg.exe.old",
"notes": [
"- The bundled ffmpeg has been renamed to 'ffmpeg.exe.old' to prevent conflict with a standalone ffmpeg installation - if you need it for ImageMagick tools, rename it back to 'ffmpeg.exe'.",
"- 'convert.exe' is deprecated in v7 (it also conflicts with the builtin Windows 'convert' utility). Use 'magick convert ...' instead."
],
"checkver": {
"url": "https://download.imagemagick.org/ImageMagick/download/binaries/?C=N;O=D",
"regex": "ImageMagick-([\\d.-]+)-Q16-HDRI-x64-dll\\.exe\\.asc"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://download.imagemagick.org/ImageMagick/download/binaries/ImageMagick-$matchHead$matchTail-Q16-HDRI-x64-dll.exe"
},
"32bit": {
"url": "https://download.imagemagick.org/ImageMagick/download/binaries/ImageMagick-$matchHead$matchTail-Q16-HDRI-x86-dll.exe"
}
},
"hash": {
"mode": "rdf",
"url": "https://www.imagemagick.org/download/binaries/digest.rdf"
}
}
}