Update ImageMagick to latest version

This commit is contained in:
Adam J. Stewart
2016-08-03 10:27:55 -05:00
parent 2b83ea30e7
commit a388871083
2 changed files with 18 additions and 27 deletions

View File

@@ -26,16 +26,20 @@
class Ghostscript(Package):
"""an interpreter for the PostScript language and for PDF. """
"""An interpreter for the PostScript language and for PDF."""
homepage = "http://ghostscript.com/"
url = "http://downloads.ghostscript.com/public/old-gs-releases/ghostscript-9.18.tar.gz"
url = "http://downloads.ghostscript.com/public/old-gs-releases/ghostscript-9.18.tar.gz"
version('9.18', '33a47567d7a591c00a253caddd12a88a')
parallel = False
depends_on('libtiff')
def install(self, spec, prefix):
configure("--prefix=%s" % prefix, "--enable-shared")
configure('--prefix={0}'.format(prefix),
'--with-system-libtiff')
make()
make("install")
make('install')