-
-
Save talesmantovani/9ae377a26f289b2ba790bb01a776eb14 to your computer and use it in GitHub Desktop.
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
#!/usr/bin/env bash | |
# | |
# Install: | |
# curl -L https://gist.githubusercontent.com/lemanchester/260341aedc56cec082fb/raw/d74c358f5d6bbb7f3202a9ead5b450e93c8d8011/install_imagemagick.sh | bash | |
# | |
echo "*****************************************" | |
echo " Installing ImageMagick on Amazon Linux AMI " | |
echo "*****************************************" | |
echo "*" | |
echo "*" | |
echo "*****************************************" | |
echo " 1. Installing dependencies " | |
echo "*****************************************" | |
sudo yum -y install wget tcl-devel libpng-devel libjpeg-devel ghostscript-devel bzip2-devel freetype-devel libtiff-devel | |
echo "*****************************************" | |
echo " 2. Download, Untar and Make Redis 2.6" | |
echo "*****************************************" | |
wget http://mirrors-usa.go-parts.com/mirrors/ImageMagick/ImageMagick.tar.gz | |
tar -vzxf ImageMagick.tar.gz | |
rm -f ImageMagick.tar.gz | |
cd ImageMagick*/ | |
./configure --prefix=/usr/local --with-bzlib=yes --with-fontconfig=yes --with-freetype=yes --with-gslib=yes --with-gvc=yes --with-jpeg=yes --with-jp2=yes --with-png=yes --with-tiff=yes | |
make | |
make install | |
echo "*****************************************" | |
echo "Complete!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment