libgd-2.2.4-intel-2018.eb 636 B

1234567891011121314151617181920212223242526
  1. easyblock = 'ConfigureMake'
  2. name = 'libgd'
  3. version = '2.2.4'
  4. homepage = 'https://libgd.github.io/'
  5. description = "GD is an open source code library for the dynamic creation of images by programmers."
  6. toolchain = {'name': 'intel', 'version': '2018'}
  7. source_urls = ['https://github.com/libgd/libgd/releases/download/gd-%(version)s/']
  8. sources = [SOURCELOWER_TAR_GZ]
  9. dependencies = [
  10. ('fontconfig', '2.12.4'),
  11. ('libjpeg-turbo', '1.5.1'),
  12. ('libpng', '1.6.32'),
  13. ('zlib', '1.2.11'),
  14. ]
  15. sanity_check_paths = {
  16. 'files': ["lib/libgd.a", "lib/libgd.%s" % SHLIB_EXT],
  17. 'dirs': ["bin", "include"],
  18. }
  19. moduleclass = 'lib'