libjpeg-turbo-1.5.1-intel-2018.eb 904 B

123456789101112131415161718192021222324252627282930
  1. easyblock = 'ConfigureMake'
  2. name = 'libjpeg-turbo'
  3. version = '1.5.1'
  4. homepage = 'http://sourceforge.net/projects/libjpeg-turbo/'
  5. description = """libjpeg-turbo is a fork of the original IJG libjpeg which uses SIMD to accelerate baseline JPEG
  6. compression and decompression. libjpeg is a library that implements JPEG image encoding, decoding and transcoding.
  7. """
  8. toolchain = {'name': 'intel', 'version': '2018'}
  9. toolchainopts = {'pic': True}
  10. source_urls = [SOURCEFORGE_SOURCE]
  11. sources = [SOURCELOWER_TAR_GZ]
  12. dependencies = [
  13. ('NASM', '2.12.02'),
  14. ]
  15. configopts = "--with-jpeg8"
  16. runtest = "test"
  17. sanity_check_paths = {
  18. 'files': ['bin/cjpeg', 'bin/djpeg', 'bin/jpegtran', 'bin/rdjpgcom', 'bin/tjbench', 'bin/wrjpgcom',
  19. 'lib/libjpeg.a', 'lib/libjpeg.%s' % SHLIB_EXT, 'lib/libturbojpeg.a', 'lib/libturbojpeg.%s' % SHLIB_EXT],
  20. 'dirs': ['include', 'share'],
  21. }
  22. moduleclass = 'lib'