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/sh | |
| # Install pre-requisites | |
| apt-get install build-essential software-properties-common libjpeg-dev libtiff5-dev libpng-dev --fix-missing | |
| # Download from SourceForge | |
| wget --no-cookies --timestamping https://excellmedia.dl.sourceforge.net/project/graphicsmagick/graphicsmagick/1.3.34/GraphicsMagick-1.3.34.tar.gz --directory /tmp | |
| # Decompress package into /opt/graphicsmagick | |
| if [ ! -d "/opt/graphicsmagick/src" ]; then |