ImageMagick-7.0.10-35-GCCcore-10.2.0.eb 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
  2. # Author: Ravi Tripathi
  3. # Email: ravi89@uab.edu
  4. easyblock = 'ConfigureMake'
  5. name = 'ImageMagick'
  6. version = '7.0.10-35'
  7. homepage = 'https://www.imagemagick.org/'
  8. description = """ImageMagick is a software suite to create, edit, compose, or convert bitmap images"""
  9. toolchain = {'name': 'GCCcore', 'version': '10.2.0'}
  10. source_urls = ['https://github.com/ImageMagick/ImageMagick/archive/']
  11. sources = ['%(version)s.tar.gz']
  12. checksums = ['fca8e29822ac97b5de755d8809ffccc6585df4c4dde61f93d13ce2bd269982b7']
  13. dependencies = [
  14. ('bzip2', '1.0.8'),
  15. ('X11', '20201008'),
  16. ('Ghostscript', '9.53.3'),
  17. ('JasPer', '2.0.14'),
  18. ('libjpeg-turbo', '2.0.5'),
  19. ('LibTIFF', '4.1.0'),
  20. ('LittleCMS', '2.11'),
  21. ]
  22. builddependencies = [
  23. ('binutils', '2.35'),
  24. ('pkg-config', '0.29.2'),
  25. ]
  26. configopts = "--with-gslib --with-x"
  27. sanity_check_paths = {
  28. 'files': [],
  29. 'dirs': ['bin', 'etc/%(name)s-%(version_major)s',
  30. 'include/%(name)s-%(version_major)s', 'lib', 'share'],
  31. }
  32. modextravars = {'MAGICK_HOME': '%(installdir)s'}
  33. moduleclass = 'vis'