diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2018-12-17 13:04:16 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-17 13:04:16 -0600 |
commit | 5964d14936a57c8d4e9bea96393ac2f3ec75738b (patch) | |
tree | 91cc90c49e17615cc2c07d808a22be592af256d5 | |
parent | fe730431705075ee35e03407eec7c35b06716ddc (diff) | |
download | spack-5964d14936a57c8d4e9bea96393ac2f3ec75738b.tar.gz spack-5964d14936a57c8d4e9bea96393ac2f3ec75738b.tar.bz2 spack-5964d14936a57c8d4e9bea96393ac2f3ec75738b.tar.xz spack-5964d14936a57c8d4e9bea96393ac2f3ec75738b.zip |
Add latest version of ghostscript (#10123)
-rw-r--r-- | var/spack/repos/builtin/packages/ghostscript/package.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/ghostscript/package.py b/var/spack/repos/builtin/packages/ghostscript/package.py index d5d478bf90..f04ec82dcd 100644 --- a/var/spack/repos/builtin/packages/ghostscript/package.py +++ b/var/spack/repos/builtin/packages/ghostscript/package.py @@ -11,8 +11,9 @@ class Ghostscript(AutotoolsPackage): """An interpreter for the PostScript language and for PDF.""" homepage = "http://ghostscript.com/" - url = "https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs921/ghostscript-9.21.tar.gz" + url = "https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs926/ghostscript-9.26.tar.gz" + version('9.26', sha256='831fc019bd477f7cc2d481dc5395ebfa4a593a95eb2fe1eb231a97e450d7540d') version('9.21', '5f213281761d2750fcf27476c404d17f') version('9.18', '33a47567d7a591c00a253caddd12a88a') @@ -25,6 +26,7 @@ class Ghostscript(AutotoolsPackage): depends_on('libtiff') depends_on('zlib') depends_on('libxext') + depends_on('gtkplus') def url_for_version(self, version): baseurl = "https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs{0}/ghostscript-{1}.tar.gz" |