Skip to content

Instantly share code, notes, and snippets.

@devonoel
Created April 22, 2014 21:14
Show Gist options
  • Save devonoel/11194537 to your computer and use it in GitHub Desktop.
Save devonoel/11194537 to your computer and use it in GitHub Desktop.
Download and install GraphicsMagick from Source
#!/bin/bash
# Downloads and installs GraphicsMagick
curl ftp://ftp.icm.edu.pl/pub/unix/graphics/GraphicsMagick/1.3/GraphicsMagick-1.3.19.tar.gz | tar zx
cd GraphicsMagick-1.3.19
./configure
make
sudo make install
cd ..
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment