
* Update URL parsing regexes and tests * Get rid of no longer used README * Merge py-udunits and py-cf-units * netcdf -> netcdf-c * setup_environment -> setup_*_environment * Fix doc tests * Few last minute fixes * Simplify prefix removal copypasta
36 lines
1.2 KiB
Python
36 lines
1.2 KiB
Python
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack import *
|
|
|
|
|
|
class Imagemagick(AutotoolsPackage):
|
|
"""ImageMagick is a software suite to create, edit, compose,
|
|
or convert bitmap images."""
|
|
|
|
homepage = "http://www.imagemagick.org"
|
|
url = "https://github.com/ImageMagick/ImageMagick/archive/7.0.2-7.tar.gz"
|
|
|
|
version('7.0.5-9', sha256='b85b269e0ed1628e88e840053823f8a33c314b2271f04762f43d33e9d0b4d264')
|
|
version('7.0.2-7', sha256='f2f18a97f861c1668befdaff0cc3aaafb2111847aab028a88b4c2cb017acfbaa')
|
|
version('7.0.2-6', sha256='7d49ca8030f895c683cae69c52d8edfc4876de651f5b8bfdbea907e222480bd3')
|
|
|
|
depends_on('jpeg')
|
|
depends_on('pango')
|
|
depends_on('libtool', type='build')
|
|
depends_on('libpng')
|
|
depends_on('freetype')
|
|
depends_on('fontconfig')
|
|
depends_on('libtiff')
|
|
depends_on('ghostscript')
|
|
depends_on('ghostscript-fonts')
|
|
|
|
def configure_args(self):
|
|
spec = self.spec
|
|
gs_font_dir = join_path(spec['ghostscript-fonts'].prefix.share, "font")
|
|
return [
|
|
'--with-gs-font-dir={0}'.format(gs_font_dir)
|
|
]
|