Created
April 22, 2014 21:14
-
-
Save devonoel/11194537 to your computer and use it in GitHub Desktop.
Download and install GraphicsMagick from Source
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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