fontconfig-2.13.92-GCCcore-13.3.0.eb 922 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. easyblock = 'ConfigureMake'
  2. name = 'fontconfig'
  3. version = '2.13.92'
  4. homepage = 'https://www.freedesktop.org/wiki/Software/fontconfig/'
  5. description = """
  6. Fontconfig is a library designed to provide system-wide font configuration,
  7. customization and application access.
  8. """
  9. toolchain = {'name': 'GCCcore', 'version': '13.3.0'}
  10. toolchainopts = {'pic': True}
  11. source_urls = ['https://www.freedesktop.org/software/fontconfig/release/']
  12. sources = [SOURCE_TAR_GZ]
  13. checksums = ['3406a05b83a42231e3df68d02bc0a0cf47b3f2e8f11c8ede62267daf5f130016']
  14. builddependencies = [
  15. ('binutils', '2.42'),
  16. ('gperf', '3.1'),
  17. ('pkgconf', '2.2.0'),
  18. ]
  19. dependencies = [
  20. ('expat', '2.6.2'),
  21. ('freetype', '2.13.2'),
  22. ('util-linux', '2.39'),
  23. ]
  24. configopts = '--disable-docs '
  25. sanity_check_paths = {
  26. 'files': ['include/fontconfig/fontconfig.h', 'lib/libfontconfig.%s' % SHLIB_EXT],
  27. 'dirs': []
  28. }
  29. moduleclass = 'vis'