diff --git a/install-imagemagick.sh b/install-imagemagick.sh new file mode 100644 index 0000000..cab9401 --- /dev/null +++ b/install-imagemagick.sh @@ -0,0 +1,9 @@ +curl -OL http://www.imagemagick.org/download/ImageMagick-6.9.6-5.tar.gz +tar -xzf ImageMagick-6.9.6-5.tar.gz +cd ImageMagick-6.9.6-5 +./configure --prefix=/usr/local --disable-static --with-modules --without-perl --without-magick-plus-plus --with-quantum-depth=8 --disable-openmp --with-gs-font-dir=/usr/local/share/ghostscript/fonts +make +sudo make install +cd .. +rm ImageMagick-6.9.6-5.tar.gz +rm -rf ImageMagick-6.9.6-5