12345678910111213141516171819202122232425262728 |
- easyblock = 'ConfigureMake'
- name = 'ICU'
- version = '66.1'
- homepage = 'http://site.icu-project.org/home'
- description = """ICU is a mature, widely used set of C/C++ and Java libraries providing Unicode and Globalization
- support for software applications."""
- toolchain = {'name': 'GCCcore', 'version': '8.3.0'}
- toolchainopts = {'pic': True}
- source_urls = ['https://github.com/unicode-org/icu/releases/download/release-%(version_major)s-%(version_minor)s']
- sources = ['icu4c-%(version_major)s_%(version_minor)s-src.tgz']
- builddependencies = [
- ('binutils', '2.32'),
- ('Python', '3.7.4'),
- ]
- start_dir = 'source'
- sanity_check_paths = {
- 'files': ['lib/libicu%s.%s' % (x, SHLIB_EXT) for x in ['data', 'i18n', 'io', 'test', 'tu', 'uc']],
- 'dirs': ['bin', 'include/unicode', 'share/icu', 'share/man'],
- }
- moduleclass = 'lib'
|