ICU-71.1-GCCcore-11.2.0.eb 918 B

1234567891011121314151617181920212223242526272829
  1. easyblock = 'ConfigureMake'
  2. name = 'ICU'
  3. version = '71.1'
  4. homepage = 'https://icu.unicode.org'
  5. description = """ICU is a mature, widely used set of C/C++ and Java libraries providing Unicode and Globalization
  6. support for software applications."""
  7. toolchain = {'name': 'GCCcore', 'version': '11.2.0'}
  8. toolchainopts = {'pic': True}
  9. source_urls = ['https://github.com/unicode-org/icu/releases/download/release-%(version_major)s-%(version_minor)s']
  10. sources = ['icu4c-%(version_major)s_%(version_minor)s-src.tgz']
  11. checksums = ['67a7e6e51f61faf1306b6935333e13b2c48abd8da6d2f46ce6adca24b1e21ebf']
  12. builddependencies = [
  13. ('binutils', '2.37'),
  14. ('Python', '3.9.6', '-bare'),
  15. ]
  16. start_dir = 'source'
  17. sanity_check_paths = {
  18. 'files': ['lib/libicu%s.%s' % (x, SHLIB_EXT) for x in ['data', 'i18n', 'io', 'test', 'tu', 'uc']],
  19. 'dirs': ['bin', 'include/unicode', 'share/icu', 'share/man'],
  20. }
  21. moduleclass = 'lib'