Skip to content

Instantly share code, notes, and snippets.

@techgaun
Created November 13, 2014 20:02
Show Gist options
  • Save techgaun/da157c26d064c8f56320 to your computer and use it in GitHub Desktop.
Save techgaun/da157c26d064c8f56320 to your computer and use it in GitHub Desktop.
Install GraphicMagick in Amazon Linux
#!/bin/bash
yum install -y gcc libpng libjpeg libpng-devel libjpeg-devel ghostscript libtiff libtiff-devel freetype freetype-devel
wget ftp://ftp.graphicsmagick.org/pub/GraphicsMagick/1.3/GraphicsMagick-1.3.20.tar.gz
tar xfz ftp://ftp.graphicsmagick.org/pub/GraphicsMagick/1.3/GraphicsMagick-1.3.20.tar.gz
cd GraphicsMagick-1.3.20
./configure
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment