freetype-2.9.1-foss-2017b.eb 1010 B

1234567891011121314151617181920212223242526272829303132333435
  1. name = 'freetype'
  2. version = '2.9.1'
  3. homepage = 'http://freetype.org'
  4. description = """
  5. FreeType 2 is a software font engine that is designed to be small, efficient,
  6. highly customizable, and portable while capable of producing high-quality
  7. output (glyph images). It can be used in graphics libraries, display servers,
  8. font conversion tools, text image generation tools, and many other products
  9. as well.
  10. """
  11. toolchain = {'name': 'foss', 'version': '2017b'}
  12. toolchainopts = {'pic': True}
  13. source_urls = [GNU_SAVANNAH_SOURCE]
  14. sources = [SOURCE_TAR_GZ]
  15. checksums = ['ec391504e55498adceb30baceebd147a6e963f636eb617424bcfc47a169898ce']
  16. dependencies = [
  17. ('bzip2', '1.0.6'),
  18. ('libpng', '1.6.34'),
  19. ('zlib', '1.2.11'),
  20. ]
  21. configopts = '--enable-freetype-config --with-harfbuzz=no'
  22. sanity_check_paths = {
  23. 'files': ['bin/freetype-config', 'lib/libfreetype.a',
  24. 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'],
  25. 'dirs': ['include/freetype2'],
  26. }
  27. moduleclass = 'vis'