openjpeg-2.3.0-intel-2018.eb 831 B

12345678910111213141516171819202122232425262728293031
  1. easyblock = 'CMakeMake'
  2. name = 'openjpeg'
  3. version = '2.3.0'
  4. homepage = "http://www.openjpeg.org/"
  5. description = """OpenJPEG is an open-source JPEG 2000 codec written in C language.
  6. It has been developed in order to promote the use of JPEG 2000, a still-image
  7. compression standard from the Joint Photographic Experts Group (JPEG).
  8. Since may 2015, it is officially recognized by ISO/IEC and ITU-T as a JPEG 2000
  9. Reference Software."""
  10. toolchain = {'name': 'intel', 'version': '2018'}
  11. source_urls = ["https://github.com/uclouvain/openjpeg/archive"]
  12. sources = ["v%(version)s.tar.gz"]
  13. builddependencies = [
  14. ('CMake', '3.9.1'),
  15. ]
  16. configopts = '-DCMAKE_BUILD_TYPE=Release'
  17. sanity_check_paths = {
  18. 'files': ['bin/opj_compress', 'bin/opj_decompress'],
  19. 'dirs': [],
  20. }
  21. separate_build_dir = True
  22. moduleclass = 'lib'