Skip to content

Instantly share code, notes, and snippets.

@wireframe
Created November 7, 2008 20:18
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 wireframe/22956 to your computer and use it in GitHub Desktop.
Save wireframe/22956 to your computer and use it in GitHub Desktop.
script to build imagemagick from source
sudo yum install libpng -y
sudo yum install libpng-devel -y
cd /usr/local/src
wget ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick.tar.gz
tar xvfz ImageMagick.tar.gz
cd ImageMagick-6.4.5
./configure
make
sudo make install
convert -version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment