-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a244709
commit 9f05b08
Showing
3 changed files
with
108 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/bin/sh | ||
|
||
ver_old=$2 | ||
if [ "$(apk version -t "$ver_old" '7.1.1.11-r2')" = '<' ]; then | ||
cat >&2 <<-EOF | ||
* | ||
* imagemagick support for various modules was split into subpackages. | ||
* they autoinstall with the requisite library already installed. | ||
* if not already present, install the module you want to use manually: | ||
* (prefixed with imagemagick- ) | ||
* -heic -jpeg -pdf -raw | ||
* -svg -tiff -webp -jxl | ||
* if you want to exclude the support regardless, use e.g. 'apk add !imagemagick-pdf' | ||
* | ||
EOF | ||
fi |