Skip to content

Instantly share code, notes, and snippets.

@stravid
Created October 12, 2012 08:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stravid/3878017 to your computer and use it in GitHub Desktop.
Save stravid/3878017 to your computer and use it in GitHub Desktop.
#!/bin/sh
set -e
function download() {
url=$1
base=$(basename $1)
if [[ ! -e $base ]]; then
echo "curling $url"
curl -O -L $url
fi
}
mkdir magick-installer
cd magick-installer
download http://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.13.1.tar.gz
download http://nongnu.askapache.com/freetype/freetype-2.4.3.tar.gz
download http://sourceforge.net/projects/libpng/files/libpng15/older-releases/1.5.5/libpng-1.5.5.tar.gz
download http://www.imagemagick.org/download/delegates/jpegsrc.v8b.tar.gz
download http://download.osgeo.org/libtiff/tiff-3.9.4.tar.gz
download http://voxel.dl.sourceforge.net/project/wvware/libwmf/0.2.8.4/libwmf-0.2.8.4.tar.gz
download http://downloads.sourceforge.net/project/lcms/lcms/1.19/lcms-1.19.tar.gz
download http://sourceforge.net/projects/ghostscript/files/GPL%20Ghostscript/9.04/ghostscript-9.04.tar.gz
download http://voxel.dl.sourceforge.net/project/gs-fonts/gs-fonts/8.11%20%28base%2035%2C%20GPL%29/ghostscript-fonts-std-8.11.tar.gz
download ftp://ftp.sunet.se/pub/multimedia/graphics/ImageMagick/ImageMagick-6.6.7-0.tar.gz
tar xzvf libiconv-1.13.1.tar.gz
cd libiconv-1.13.1
cd libcharset
./configure --prefix=/usr/local
make
sudo make uninstall
cd ../..
tar xzvf freetype-2.4.3.tar.gz
cd freetype-2.4.3
./configure --prefix=/usr/local
make clean
make
sudo make uninstall
cd ..
tar xzvf libpng-1.5.5.tar.gz
cd libpng-1.5.5
./configure --prefix=/usr/local
make clean
make
sudo make uninstall
cd ..
tar xzvf jpegsrc.v8b.tar.gz
cd jpeg-8b
ln -s -f `which glibtool` ./libtool
export MACOSX_DEPLOYMENT_TARGET=10.7
./configure --enable-shared --prefix=/usr/local
make clean
make
sudo make uninstall
cd ..
tar xzvf tiff-3.9.4.tar.gz
cd tiff-3.9.4
./configure --prefix=/usr/local
make clean
make
sudo make uninstall
cd ..
tar xzvf libwmf-0.2.8.4.tar.gz
cd libwmf-0.2.8.4
./configure
make clean
make
sudo make uninstall
cd ..
tar xzvf lcms-1.19.tar.gz
cd lcms-1.19
./configure
make clean
make
sudo make uninstall
cd ..
tar zxvf ghostscript-9.04.tar.gz
cd ghostscript-9.04
./configure --prefix=/usr/local
make clean
make
sudo make uninstall
cd ..
tar zxvf ghostscript-fonts-std-8.11.tar.gz
sudo mkdir -p /usr/local/share/ghostscript/fonts
sudo mv -f fonts/* /usr/local/share/ghostscript/fonts
tar xzvf ImageMagick-6.6.7-0.tar.gz
cd ImageMagick-6.6.7-0
export CPPFLAGS=-I/usr/local/include
export LDFLAGS=-L/usr/local/lib
./configure --prefix=/usr/local --disable-static --without-fontconfig --with-modules --without-perl --without-magick-plus-plus --with-quantum-depth=8 --with-gs-font-dir=/usr/local/share/ghostscript/fonts --disable-openmp
make clean
make
sudo make uninstall
cd ..
cd ..
rm -Rf magick-installer
echo "ImageMagick successfully installed!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment