# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild
# Author: Ravi Tripathi
# Email: ravi89@uab.edu

easyblock = 'ConfigureMake'

name = 'ImageMagick'
version = '7.0.2-9'

homepage = 'http://www.imagemagick.org/'
description = """ImageMagick is a software suite to create, edit, compose, or convert bitmap images"""

toolchain = {'name': 'intel', 'version': '2016a'}

sources = [SOURCE_TAR_XZ]
source_urls = ['http://www.imagemagick.org/download']

dependencies = [
    ('bzip2', '1.0.6'),
    ('freetype', '2.6.3'),
    ('Ghostscript', '9.19'),
    ('JasPer', '1.900.1'),
    ('libjpeg-turbo', '1.4.2'),
    ('LibTIFF', '4.0.6'),
    ('libX11', '1.6.3'),
    ('libXext', '1.3.3'),
    ('libXt', '1.1.5'),
    ('LittleCMS', '2.7'),
]

builddependencies = [
    ('pkg-config', '0.29'),
]

configopts = "--with-gslib --with-x"

sanity_check_paths = {
    'files': [],
    'dirs': [
        'bin',
        'etc/%(name)s-%(version_major)s',
        'include/%(name)s-%(version_major)s',
        'lib',
        'share'],
}

modextravars = {'MAGICK_HOME': '%(installdir)s'}

moduleclass = 'vis'