Created
March 11, 2022 16:31
-
-
Save CodeBrauer/c042f91b9694dbb2f3cd1aefdee318c9 to your computer and use it in GitHub Desktop.
Install latest ImageMagick6
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
#!/bin/bash | |
# Author CodeBrauer 2022 | |
export TMP=~./tmp/ | |
# thanks to: https://stackoverflow.com/a/67404585/1990745 | |
LATEST_IM_VERSION=$(curl "https://api.github.com/repos/ImageMagick/ImageMagick6/tags" | jq -r '.[0].name') | |
echo ">>> Found latest IM6 version: $LATEST_IM_VERSION"; | |
echo ">>> Start Download..." | |
wget -q -O IM.zip "https://github.com/ImageMagick/ImageMagick6/archive/$LATEST_IM_VERSION.zip" | |
echo ">>> Unzip it!" | |
unzip IM.zip | |
rm IM.zip | |
cd "ImageMagick6-$LATEST_IM_VERSION/" | |
echo ">>> Configure & Make it (compile could take a while!)" | |
./configure --enable-static=yes --with-jpeg=yes --with-png=yes --with-tiff=yes --with-lcms=yes | |
make | |
if [[ -f "./utilities/convert" ]]; then | |
cd ../ | |
[ -e "ImageMagick6-latest" ] && rm -rf "ImageMagick6-latest" | |
cp -r "ImageMagick6-$LATEST_IM_VERSION/" "ImageMagick6-latest" | |
else | |
echo "❌ Error compile failed? Check output above?" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment