# JH 2020 name = 'freetype' version = '2.10.1' homepage = 'https://www.freetype.org' description = """ FreeType 2 is a software font engine that is designed to be small, efficient, highly customizable, and portable while capable of producing high-quality output (glyph images). It can be used in graphics libraries, display servers, font conversion tools, text image generation tools, and many other products as well. """ toolchain = SYSTEM toolchainopts = {'pic': True} source_urls = [GNU_SAVANNAH_SOURCE] sources = [SOURCE_TAR_GZ] checksums = ['3a60d391fd579440561bf0e7f31af2222bc610ad6ce4d9d7bd2165bca8669110'] builddependencies = [('binutils', '2.32')] dependencies = [ ('bzip2', '1.0.8'), ('libpng', '1.6.37'), ('zlib', '1.2.11'), ] configopts = '--enable-freetype-config --with-harfbuzz=no' sanity_check_paths = { 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT, 'lib/pkgconfig/freetype2.pc'], 'dirs': ['include/freetype2'], } moduleclass = 'vis'